changeset d092880b3303 in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=d092880b3303
description: fix var name

diffstat:

 src/common/connection_handlers_events.py |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r efcf3c421924 -r d092880b3303 src/common/connection_handlers_events.py
--- a/src/common/connection_handlers_events.py  Wed Dec 08 21:58:13 2010 +0100
+++ b/src/common/connection_handlers_events.py  Thu Dec 09 12:39:28 2010 +0300
@@ -863,7 +863,7 @@
                     jid = helpers.parse_jid(destroy.getAttr('jid'))
                     self.reason += '\n' + \
                         _('You can join this room instead: %s') % jid
-                except common.helpers.InvalidFormat:
+                except helpers.InvalidFormat:
                     pass
             self.status_code = ['destroyed']
         else:
@@ -1616,7 +1616,7 @@
         for meta in metas:
             try:
                 jid = helpers.parse_jid(meta.getAttr('jid'))
-            except common.helpers.InvalidFormat:
+            except helpers.InvalidFormat:
                 continue
             tag = meta.getAttr('tag')
             data = {'jid': jid}
@@ -1816,4 +1816,3 @@
     def generate(self):
         self.jid = gajim.get_jid_without_resource(self.jid)
         return True
-
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to