aboutsummaryrefslogtreecommitdiff
path: root/host/viewer.py
diff options
context:
space:
mode:
Diffstat (limited to 'host/viewer.py')
-rwxr-xr-xhost/viewer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/viewer.py b/host/viewer.py
index 176c6d4..63a4546 100755
--- a/host/viewer.py
+++ b/host/viewer.py
@@ -24,7 +24,7 @@ if __name__ == '__main__':
udp_server = crap.CRAPServer(args.addr, args.port, blocking=True, log=lambda *_a: None)
with suppress(KeyboardInterrupt):
- for frame in udp_server:
+ for _title, frame in udp_server:
bdf.printframe(frame)
udp_server.close()