diff options
author | Florian Jung <flo@windfisch.org> | 2015-09-28 01:00:23 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-09-28 01:00:23 +0200 |
commit | b6730116365c37a7dd6e822dc46896f81d8e56ee (patch) | |
tree | c9aaa3445ee222c26ec5c35a6052128b98db27e6 | |
parent | b12734d412869ebd85320cc171723e6b9686336c (diff) |
fix party mode
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ for i in range(1,10): # 10 connection attempts # find out server and token to connect try: token = sys.argv[1] - addr, *_ = utils.get_party_address(token) + addr = utils.get_party_address(token) print("using party token") except: |