py3 fix for animation, thanks to blarghmatey for reporting

This commit is contained in:
qua-non 2013-07-15 19:08:48 +05:30
parent 64dc73fe1d
commit 13df239f1a
1 changed files with 1 additions and 1 deletions

View File

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