From 13df239f1a9e50ccab94cc0e46b5e264aa4db258 Mon Sep 17 00:00:00 2001 From: qua-non Date: Mon, 15 Jul 2013 19:08:48 +0530 Subject: [PATCH] py3 fix for animation, thanks to blarghmatey for reporting --- kivy/animation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/animation.py b/kivy/animation.py index b9222c13c..ca0981b17 100644 --- a/kivy/animation.py +++ b/kivy/animation.py @@ -270,7 +270,7 @@ class Animation(EventDispatcher): widgets = self._widgets transition = self._transition calculate = self._calculate - for uid in widgets.keys()[:]: + for uid in list(widgets.keys())[:]: anim = widgets[uid] widget = anim['widget'] if anim['time'] is None: