aboutsummaryrefslogtreecommitdiff
path: root/client.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2015-06-14 06:00:58 -0400
committerGraham Northup <grissess@nexusg.org>2015-06-14 06:00:58 -0400
commitf1824fd539caac27bb91b74f56e24da0908da941 (patch)
tree7ec4ab0e66439d43add298218912521415e0024a /client.py
parent2420dacc8cc81e8240c27d3b78c80fa8cba59527 (diff)
Little things: Fix a typo bug
Diffstat (limited to 'client.py')
-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