From b942c48e6dee00ea7ff4421b729f6fd2dfa633d3 Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Wed, 11 Jan 2017 18:26:59 +1100 Subject: [PATCH] Don't use non-ASCII in things you print You may not be in a UTF-8 locale. --- ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingest.py b/ingest.py index f575836..9dc1cb5 100755 --- a/ingest.py +++ b/ingest.py @@ -250,7 +250,7 @@ def get_clock(core_ip, core_clock_port=9998): print('obtained NetClientClock from host: {ip}:{port}'.format( ip=core_ip, port=core_clock_port) ) - print('waiting for NetClientClock to sync…') + print('waiting for NetClientClock to sync...') clock.wait_for_sync(Gst.CLOCK_TIME_NONE) return clock