Fix for auto post processing not working if sab was replacing both dots & spaces

This commit is contained in:
rembo10
2012-12-08 22:50:03 -05:00
parent 76c828dc3f
commit 5a766e126c

View File

@@ -49,7 +49,7 @@ def checkFolder():
nzb_album_possibilities = [ album['FolderName'],
sab_replace_dots(album['FolderName']),
sab_replace_spaces(album['FolderName']),
sab_replace_dots(sab_replace_spaces(album['FolderName']))
sab_replace_spaces(sab_replace_dots(album['FolderName']))
]
torrent_album_path = os.path.join(headphones.DOWNLOAD_TORRENT_DIR, album['FolderName']).encode(headphones.SYS_ENCODING)