Merge pull request #1058 from clinton-hall/issue-1056

Apply dict type-casting in autoFork too.
This commit is contained in:
Labrys of Knossos 2016-06-07 23:51:29 -04:00
commit 94e1ee9ad7

View file

@ -12,7 +12,7 @@ def autoFork(section, inputCategory):
# auto-detect correct section
# config settings
cfg = core.CFG[section][inputCategory]
cfg = dict(core.CFG[section][inputCategory])
host = cfg.get("host")
port = cfg.get("port")