From f5bfa173540fc81190f0df02fe1a26856427a8c6 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Fri, 1 Mar 2013 13:46:17 -0800 Subject: [PATCH] Create destination here, not extractor --- TorrentToMedia.py | 1 + 1 file changed, 1 insertion(+) diff --git a/TorrentToMedia.py b/TorrentToMedia.py index 3cdd70fb..60176f16 100755 --- a/TorrentToMedia.py +++ b/TorrentToMedia.py @@ -303,6 +303,7 @@ for dirpath, dirnames, filenames in os.walk(inputDirectory): Logger.info("MAIN: Found compressed archive %s for file %s", fileExtention, filePath) source = filePath target = os.path.join(outputDestination, file) + create_destination(outputDestination) try: extractor.extract(dirpath, file, outputDestination) except: