mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 13:53:15 -07:00
Merge pull request #1058 from clinton-hall/issue-1056
Apply dict type-casting in autoFork too.
This commit is contained in:
commit
94e1ee9ad7
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ def autoFork(section, inputCategory):
|
||||||
# auto-detect correct section
|
# auto-detect correct section
|
||||||
# config settings
|
# config settings
|
||||||
|
|
||||||
cfg = core.CFG[section][inputCategory]
|
cfg = dict(core.CFG[section][inputCategory])
|
||||||
|
|
||||||
host = cfg.get("host")
|
host = cfg.get("host")
|
||||||
port = cfg.get("port")
|
port = cfg.get("port")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue