From 231d524a13a331c288619c3c33cf2a9983656423 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Mon, 10 Feb 2014 10:40:11 +1030 Subject: [PATCH] fix indent error. Fixes #256 --- DeleteSamples.py | 2 +- autoProcess/nzbToMediaUtil.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DeleteSamples.py b/DeleteSamples.py index 434ff433..e53d458f 100755 --- a/DeleteSamples.py +++ b/DeleteSamples.py @@ -43,7 +43,7 @@ def is_sample(filePath, inputName, maxSampleSize, SampleIDs): # Ignore 'sample' in files unless 'sample' in Torrent Name for ident in SampleIDs: if ident.lower() in filePath.lower() and not ident.lower() in inputName.lower(): - return True + return True # Return False if none of these were met. return False diff --git a/autoProcess/nzbToMediaUtil.py b/autoProcess/nzbToMediaUtil.py index c6745373..74396dd3 100644 --- a/autoProcess/nzbToMediaUtil.py +++ b/autoProcess/nzbToMediaUtil.py @@ -170,7 +170,7 @@ def is_sample(filePath, inputName, minSampleSize, SampleIDs): # Ignore 'sample' in files unless 'sample' in Torrent Name for ident in SampleIDs: if ident.lower() in filePath.lower() and not ident.lower() in inputName.lower(): - return True + return True # Return False if none of these were met. return False