Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2007-08-27 21:01:02 (GMT)
committer John (J5) Palmieri <johnp@redhat.com>2007-08-27 21:01:02 (GMT)
commit246ec1e4aa97750f1fc7db4dbe20fab802f06c56 (patch)
tree8ca6d0021676fed4732f2af5a7ef61c529dcbd9b /shell
parent2296fa4a6e57a65fe9ad28202bf00be62fefff71 (diff)
Fix typo
Diffstat (limited to 'shell')
-rw-r--r--shell/model/BuddyModel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/model/BuddyModel.py b/shell/model/BuddyModel.py
index f72ad70..11c6567 100644
--- a/shell/model/BuddyModel.py
+++ b/shell/model/BuddyModel.py
@@ -69,7 +69,7 @@ class BuddyModel(gobject.GObject):
def _get_buddies_cb(self, list):
buddy = None
for iter_buddy in list:
- if iter_buddy.props.key == key:
+ if iter_buddy.props.key == self._key:
buddy = iter_buddy
break