Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio Rodríguez <ignacio@sugarlabs.org>2013-02-18 01:11:51 (GMT)
committer Ignacio Rodríguez <ignacio@sugarlabs.org>2013-02-18 01:11:51 (GMT)
commit899904299ec650068a1b657e659f0052d53e247c (patch)
treea7602b12424676416a44fcbf977932ae82c4d895
parent8ffba057b2fd31ef1e08883aa804724106726f98 (diff)
Small changes..
-rw-r--r--canvas.py4
-rw-r--r--utils.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/canvas.py b/canvas.py
index bdd3aef..dfaf200 100644
--- a/canvas.py
+++ b/canvas.py
@@ -211,8 +211,8 @@ class List(gtk.TreeView):
def _search(self):
w = str(self.w)
_id = -1
- for x in ITERS:
- self._model.remove(x)
+ for iter in ITERS:
+ self._model.remove(iter)
for activity in self._list:
if self.stopped:
break
diff --git a/utils.py b/utils.py
index 2208a05..bfa60a0 100644
--- a/utils.py
+++ b/utils.py
@@ -3,6 +3,8 @@
# utils.py by:
# Agustin Zubiaga <aguz@sugarlabs.org>
+# Ignacio Rodríguez <ignacio@sugarlabs.org>
+# Alan Aguiar <alanjas@gmail.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by