Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/animation.py
diff options
context:
space:
mode:
Diffstat (limited to 'animation.py')
-rw-r--r--animation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/animation.py b/animation.py
index a0818a8..a91c559 100644
--- a/animation.py
+++ b/animation.py
@@ -81,7 +81,7 @@ class Animation(gtk.Image):
def move(self, old_pos, new_pos):
_object = self.frames[old_pos]
- self.frames.remove(old_pos)
+ self.frames.remove(_object)
self.frames.insert(new_pos, _object)
def remove_current_frame(self):