mirror of
https://github.com/evilhero/mylar
synced 2025-02-01 12:07:50 +00:00
FIX: Fix for None variable being passed for the name when post-processing DDL items
This commit is contained in:
parent
bc105fbd10
commit
7af6ca9c1d
1 changed files with 1 additions and 1 deletions
|
@ -3068,7 +3068,7 @@ def ddl_downloader(queue):
|
|||
try:
|
||||
if ddzstat['filename'] is None:
|
||||
logger.info('%s successfully downloaded - now initiating post-processing.' % (os.path.basename(ddzstat['path'])))
|
||||
mylar.PP_QUEUE.put({'nzb_name': ddzstat['filename'],
|
||||
mylar.PP_QUEUE.put({'nzb_name': os.path.basename(ddzstat['path']),
|
||||
'nzb_folder': ddzstat['path'],
|
||||
'failed': False,
|
||||
'issueid': None,
|
||||
|
|
Loading…
Reference in a new issue