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

Apply dict type-casting in autoFork too.
This commit is contained in:
Labrys of Knossos 2016-06-07 08:57:02 -04:00
commit 546a134299

View file

@ -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")