Browse Source

Don't extend release_download when none is set

pull/3039/head
Ruud 11 years ago
parent
commit
f3ae63c7a9
  1. 3
      couchpotato/core/plugins/renamer.py

3
couchpotato/core/plugins/renamer.py

@ -204,7 +204,8 @@ class Renamer(Plugin):
db = get_db()
# Extend the download info with info stored in the downloaded release
release_download = self.extendReleaseDownload(release_download)
if release_download:
release_download = self.extendReleaseDownload(release_download)
# Unpack any archives
extr_files = None

Loading…
Cancel
Save