aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.py b/client.py
index 23244aa..fb3db19 100644
--- a/client.py
+++ b/client.py
@@ -15,7 +15,7 @@ PORT = 13676
STREAMS = 1
IDENT = 'TONE'
if len(sys.argv) > 1:
- UID = sys.argv[1].rfill(24, '\x00')
+ UID = sys.argv[1].ljust(24, '\x00')
else:
UID = '\x00'*24