1
0

gui should always use daemon if it is running

This commit is contained in:
ThomasV
2014-07-25 16:44:22 +02:00
parent af3fd62fd4
commit 37ad7d8b0b

View File

@@ -221,8 +221,8 @@ if __name__ == '__main__':
# network interface # network interface
if not options.offline: if not options.offline:
if options.daemon: s = daemon_socket(start_daemon=options.daemon)
s = daemon_socket() if s:
network = NetworkProxy(s, config) network = NetworkProxy(s, config)
network.start() network.start()
else: else: