Browse Source

Merge pull request #6148 from itdaboyz/develop

Update renamer.py
pull/6251/head
Ruud Burger 9 years ago
parent
commit
775952d2a8
  1. 2
      couchpotato/core/plugins/renamer.py

2
couchpotato/core/plugins/renamer.py

@ -907,7 +907,7 @@ Remove it if you want it to be renamed (again, or at least let it try again)
replaces = [
('\.+', '.'), ('_+', '_'), ('-+', '-'), ('\s+', ' '), (' \\\\', '\\\\'), (' /', '/'),
('(\s\.)+', '.'), ('(-\.)+', '.'), ('(\s-[^\s])+', '-'),
('(\s\.)+', '.'), ('(-\.)+', '.'), ('(\s-[^\s])+', '-'), (' ]', ']'),
]
for r in replaces:

Loading…
Cancel
Save