From 658f38fd7da13992776845618ac36f42d8202433 Mon Sep 17 00:00:00 2001 From: Lazar Doric Date: Fri, 27 Jan 2017 18:59:40 -0600 Subject: [PATCH] Update video.py --- kivy/uix/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/uix/video.py b/kivy/uix/video.py index 1f7cecea1..e118b2021 100644 --- a/kivy/uix/video.py +++ b/kivy/uix/video.py @@ -17,7 +17,7 @@ the video is loaded (when the texture is created):: def on_position_change(instance, value): print('The position in the video is', value) def on_duration_change(instance, value): - print('The duration of the video is', video) + print('The duration of the video is', value) video = Video(source='PandaSneezes.avi') video.bind(position=on_position_change, duration=on_duration_change)