changeset 4d928618ac0a in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=4d928618ac0a
description: Fix typo

diffstat:

 src/config.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r 4699f2b4ee6e -r 4d928618ac0a src/config.py
--- a/src/config.py     Thu Dec 09 15:55:58 2010 +0300
+++ b/src/config.py     Thu Dec 09 17:16:36 2010 +0300
@@ -3346,8 +3346,8 @@
         if '@' in room:
             dialogs.ErrorDialog(_('Invalid server'), _('Character not 
allowed'))
             widget.set_text(room.replace('@', ''))
-        room_jid = self.room_entry.get_text().decode('utf-8').strip() + '@' + \
-                room.strip()
+        room_jid = room.strip() + '@' + \
+            self.server_entry.get_text().decode('utf-8').strip()
         try:
             room_jid = helpers.parse_resource(room_jid)
         except helpers.InvalidFormat, e:
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to