Browse Source

Make path safe first

pull/1143/merge
Ruud 13 years ago
parent
commit
2dcc1e096e
  1. 1
      couchpotato/core/plugins/renamer/main.py

1
couchpotato/core/plugins/renamer/main.py

@ -340,6 +340,7 @@ class Renamer(Plugin):
log.info('Removing "%s"', src)
try:
src = ss(src)
if os.path.isfile(src):
os.remove(src)

Loading…
Cancel
Save