summaryrefslogtreecommitdiff
path: root/host/proto/proto.py
diff options
context:
space:
mode:
Diffstat (limited to 'host/proto/proto.py')
-rw-r--r--host/proto/proto.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/proto/proto.py b/host/proto/proto.py
index e5f0af21..0e56565a 100644
--- a/host/proto/proto.py
+++ b/host/proto/proto.py
@@ -158,7 +158,7 @@ class Frame:
if command:
assert len (command) == 1 and command.isalpha ()
self.command = command
- self.args = struct.pack ('!' + fmt, *args)
+ self.args = struct.pack ('!' + fmt, *[ int (i) for i in args ])
else:
self.command = None
self.args = ''