Skip to content

Commit

Permalink
Remove some testing
Browse files Browse the repository at this point in the history
  • Loading branch information
medariox committed May 3, 2016
1 parent 03c15d7 commit d7913d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sickbeard/postProcessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,17 @@ def recursive_glob(treeroot, pattern):
results.extend(os.path.join(base, f) for f in goodfiles)
return results

if not file_path:
return []

# don't confuse glob with chars we didn't mean to use
globbable_file_path = helpers.fixGlob(file_path)

file_path_list = []

extensions_to_delete = []

subfolders = True
# subfolders = True

if subfolders:
base_name = os.path.basename(globbable_file_path).rpartition('.')[0]
Expand Down

0 comments on commit d7913d4

Please sign in to comment.