mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-22 06:13:19 -07:00
Fix format of default
This commit is contained in:
parent
48e0d0ba63
commit
ee8f1ad15b
1 changed files with 3 additions and 3 deletions
|
@ -333,9 +333,9 @@ def main(args):
|
|||
(os.path.basename(dir_name)))
|
||||
core.DOWNLOAD_INFO = core.get_download_info(os.path.basename(dir_name), 0)
|
||||
if core.DOWNLOAD_INFO:
|
||||
client_agent = text_type(core.DOWNLOAD_INFO[0]['client_agent']) else 'manual'
|
||||
input_hash = text_type(core.DOWNLOAD_INFO[0]['input_hash']) else ''
|
||||
input_id = text_type(core.DOWNLOAD_INFO[0]['input_id']) else ''
|
||||
client_agent = text_type(core.DOWNLOAD_INFO[0]['client_agent']) or 'manual'
|
||||
input_hash = text_type(core.DOWNLOAD_INFO[0]['input_hash']) or ''
|
||||
input_id = text_type(core.DOWNLOAD_INFO[0]['input_id']) or ''
|
||||
logger.info('Found download info for {0}, '
|
||||
'setting variables now ...'.format(os.path.basename(dir_name)))
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue