summaryrefslogtreecommitdiff
path: root/host/proto
diff options
context:
space:
mode:
Diffstat (limited to 'host/proto')
-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 0e56565a..e5f0af21 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, *[ int (i) for i in args ])
+ self.args = struct.pack ('!' + fmt, *args)
else:
self.command = None
self.args = ''