Browse Source

Merge f8ba835392 into 0176b0de36

pull/5685/merge
Joel Kåberg 8 years ago
committed by GitHub
parent
commit
8eb745ba51
  1. 4
      couchpotato/core/plugins/renamer.py

4
couchpotato/core/plugins/renamer.py

@ -741,8 +741,8 @@ Remove it if you want it to be renamed (again, or at least let it try again)
for filename in tag_files:
# Don't tag .ignore files
if os.path.splitext(filename)[1] == '.ignore':
# Don't tag .ignore files or when renamer is set to cleanup
if os.path.splitext(filename)[1] == '.ignore' or self.conf('cleanup'):
continue
tag_filename = '%s.%s.ignore' % (os.path.splitext(filename)[0], tag)

Loading…
Cancel
Save