From 8ebc2648d49605b74844a2e619d2cfce75ea1a20 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Fri, 1 Mar 2013 13:49:10 -0800 Subject: [PATCH] Remove create_destination --- extractor/extractor.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/extractor/extractor.py b/extractor/extractor.py index 6385c90c..b866f06c 100644 --- a/extractor/extractor.py +++ b/extractor/extractor.py @@ -3,8 +3,6 @@ import sys import logging from subprocess import call -from TorrentToMedia import create_destination - Logger = logging.getLogger() @@ -101,9 +99,6 @@ def extract(dirpath, file, outputDestination): else: Logger.debug("EXTRACTOR: Unknown file type: %s", ext[1]) return False - - # Create outputDestination folder - create_destination(outputDestination) Logger.info("Extracting %s to %s", filePath, outputDestination) Logger.debug("Extracting %s %s %s", cmd, filePath, outputDestination)