mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
Merge Nightly (#1783)
* Add Failed to SickGear fork detection (#1772) * Fix for failed passed as 2,3 from SAB (#1777) * Fix DB import (#1779) * Sqlite3.row handling fix * Fix import error in Python3 * make nzbToWatcher.py executable. #1780 * Update to V12.1.07 (#1782)
This commit is contained in:
parent
f92f8f3952
commit
b9c3ccb71d
8 changed files with 14 additions and 12 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].get('client_agent', 'manual'))
|
||||
input_hash = text_type(core.DOWNLOAD_INFO[0].get('input_hash', ''))
|
||||
input_id = text_type(core.DOWNLOAD_INFO[0].get('input_id', ''))
|
||||
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