From 356b2059d910e69d6dc715820801b6bad7d671c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20K=C3=A5berg?= Date: Fri, 1 Mar 2013 13:06:43 +0100 Subject: [PATCH] typo --- TorrentToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TorrentToMedia.py b/TorrentToMedia.py index abf0cdba..2cc1c432 100755 --- a/TorrentToMedia.py +++ b/TorrentToMedia.py @@ -129,7 +129,7 @@ def is_sample(filePath, inputName): return ('sample' in filePath.lower()) and (not 'sample' in inputName) and (os.path.getsize(filePath) < SIZE_CUTOFF) -def create_destination(outputDestination) +def create_destination(outputDestination): if not os.path.exists(outputDestination): try: Logger.info("CREATE DESTINATION: Creating destination folder: %s", outputDestination)