fix indent error. Fixes #256

This commit is contained in:
clinton-hall 2014-02-10 10:40:11 +10:30
parent 4e602956f6
commit 231d524a13
2 changed files with 2 additions and 2 deletions

View file

@ -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