mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-22 06:13:19 -07:00
Fix handling of 'type' for different ordering. #1738
This commit is contained in:
parent
5fb3229c13
commit
0f393a0a26
1 changed files with 2 additions and 1 deletions
|
@ -200,7 +200,8 @@ def process(section, dir_name, input_name=None, failed=False, client_agent='manu
|
||||||
del fork_params['quiet']
|
del fork_params['quiet']
|
||||||
|
|
||||||
if param == 'type':
|
if param == 'type':
|
||||||
fork_params[param] = 'manual'
|
if 'type' in fork_params: # only set if we haven't already deleted for 'failed' above.
|
||||||
|
fork_params[param] = 'manual'
|
||||||
if 'proc_type' in fork_params:
|
if 'proc_type' in fork_params:
|
||||||
del fork_params['proc_type']
|
del fork_params['proc_type']
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue