mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
fix indent error. Fixes #256
This commit is contained in:
parent
4e602956f6
commit
231d524a13
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ def is_sample(filePath, inputName, maxSampleSize, SampleIDs):
|
||||||
# Ignore 'sample' in files unless 'sample' in Torrent Name
|
# Ignore 'sample' in files unless 'sample' in Torrent Name
|
||||||
for ident in SampleIDs:
|
for ident in SampleIDs:
|
||||||
if ident.lower() in filePath.lower() and not ident.lower() in inputName.lower():
|
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 if none of these were met.
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
|
@ -170,7 +170,7 @@ def is_sample(filePath, inputName, minSampleSize, SampleIDs):
|
||||||
# Ignore 'sample' in files unless 'sample' in Torrent Name
|
# Ignore 'sample' in files unless 'sample' in Torrent Name
|
||||||
for ident in SampleIDs:
|
for ident in SampleIDs:
|
||||||
if ident.lower() in filePath.lower() and not ident.lower() in inputName.lower():
|
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 if none of these were met.
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue