diff options
author | MaZderMind <git@mazdermind.de> | 2015-09-05 20:48:01 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-09-05 20:48:01 +0200 |
commit | 65356fd083f31cc6956516a7e8fc04896c9f5ffc (patch) | |
tree | e3a645f6459dd4a3fae8497867200062025f762b /voctogui/voctogui.py | |
parent | 5e449400a6e7747a2135aa81dedc71c46a1e3664 (diff) |
implement config fetching and switch to async mode
Diffstat (limited to 'voctogui/voctogui.py')
-rwxr-xr-x | voctogui/voctogui.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/voctogui/voctogui.py b/voctogui/voctogui.py index 932b8f9..1ca6579 100755 --- a/voctogui/voctogui.py +++ b/voctogui/voctogui.py @@ -107,8 +107,9 @@ def main(): Connection.establish( Config.get('server', 'host')) - # fetch serverconfig from server - Config.fetchRemoteConfig() + # fetch config from server + Config.fetchServerConfig() + Connection.enterNonblockingMode() # init main-class and main-loop logging.debug('initializing Voctogui') |