Browse Source

that's the sync thread

PYADPT-55
Volker Birk 6 years ago
parent
commit
0bc3af16cc
  1. 4
      test/sync_handshake.py

4
test/sync_handshake.py

@ -138,10 +138,10 @@ def run(name, color=None):
def sync_thread(): def sync_thread():
ui = UserInterface() ui = UserInterface()
pEp.do_sync_protocol() pEp.do_sync_protocol()
ui_thread = Thread(target=sync_thread) sync = Thread(target=sync_thread)
ui_thread.start() ui_thread.start()
else: else:
ui_thread = None sync = None
ui = UserInterface() ui = UserInterface()
try: try:

Loading…
Cancel
Save