Temporary debug changes

This commit is contained in:
PhilipTrauner 2016-03-21 00:20:34 +01:00
parent 520e235483
commit fb44b33245

View file

@ -42,7 +42,7 @@ class WallabyClient:
self.sock = ESock(socket.create_connection(host_port_pair), debug=debug)
self.connected = True
self.debug = debug
self.sync = SyncClient(self.sock, "wallaby_testing", "w_sync")
self.sync = SyncClient(self.sock, sys.argv[1], "w_sync")
self.routes = {"wallaby_control" : WallabyControl(), "w_sync" : self.sync}
@ -62,4 +62,4 @@ wallaby_client = WallabyClient(("127.0.0.1", 3077), debug=True)
try:
wallaby_client.start()
except KeyboardInterrupt:
wallaby_client.stop()
wallaby_client.stop()