From 2d3e444d256a5f9c292c2b8a826a3d2f0f14d232 Mon Sep 17 00:00:00 2001 From: dessant Date: Mon, 9 Jun 2014 09:53:07 +0300 Subject: [PATCH] Fix py3 syntax error --- kivy/core/video/video_ffpyplayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/core/video/video_ffpyplayer.py b/kivy/core/video/video_ffpyplayer.py index 566758573..88ccd5957 100644 --- a/kivy/core/video/video_ffpyplayer.py +++ b/kivy/core/video/video_ffpyplayer.py @@ -254,7 +254,7 @@ class VideoFFPy(VideoBase): t1 = time.time() frame, val = ffplayer.get_frame() t2 = time.time() - print 'GET FRAME in {:.6f}'.format(t2 - t1) + print('GET FRAME in {:.6f}'.format(t2 - t1)) if val == 'eof': sleep(0.2) if not did_dispatch_eof: