Fix py3 syntax error

This commit is contained in:
dessant 2014-06-09 09:53:07 +03:00
parent a9f1c71d81
commit 2d3e444d25
1 changed files with 1 additions and 1 deletions

View File

@ -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: