fix indent error. Fixes #256

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

View file

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