From c7a50aec381f69e6d864a8a1c73a6d601f700932 Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 2 Dec 2019 12:32:33 +0100 Subject: Fix Python 3.5 compatibility --- mpv-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpv-test.py') diff --git a/mpv-test.py b/mpv-test.py index 3ac8985..b5cfcb0 100755 --- a/mpv-test.py +++ b/mpv-test.py @@ -55,7 +55,7 @@ class TestProperties(MpvTestCase): while self.m.core_idle: time.sleep(0.05) for name in sorted(self.m.property_list): - if name in ('external-file','input-ipc-server', 'heartbeat-cmd', 'wid', 'input-file'): + if name in ('external-file','input-ipc-server', 'heartbeat-cmd', 'wid', 'input-file', 'input-unix-socket'): continue name = name.replace('-', '_') with self.subTest(property_name=name), self.swallow_mpv_errors([ -- cgit