1
0

disable auo-connect is --server option is passed. fixes #992

This commit is contained in:
ThomasV
2015-01-30 10:19:22 +01:00
parent 3d2a410de0
commit 935a9a980d
2 changed files with 3 additions and 2 deletions

View File

@@ -110,7 +110,7 @@ class SimpleConfig(object):
out = None
with self.lock:
out = self.read_only_options.get(key)
if not out:
if out is None:
out = self.user_config.get(key, default)
return out