diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-07 00:57:36 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-07 00:57:36 +0000 |
commit | 4f1a38535e74f93a1bff98f8fbd273205a47814c (patch) | |
tree | 8b70ecd0c74e41f7c27823e7e09f88a756f40d60 /src | |
parent | 3d9ed2e409fab9c86519f3c0d4e118b29d17018b (diff) | |
download | poezio-4f1a38535e74f93a1bff98f8fbd273205a47814c.tar.gz poezio-4f1a38535e74f93a1bff98f8fbd273205a47814c.tar.bz2 poezio-4f1a38535e74f93a1bff98f8fbd273205a47814c.tar.xz poezio-4f1a38535e74f93a1bff98f8fbd273205a47814c.zip |
Alternative nickname. fixed #1711
Diffstat (limited to 'src')
-rw-r--r-- | src/gui.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -372,7 +372,10 @@ class Gui(object): if code == '401': self.add_message_to_room(room, _('To provide a password in order to join the room, type "/join / password" (replace "password" by the real password)')) if code == '409': - self.add_message_to_room(room, _('You can join the room with specifying an other nick, by typing "/join /other_nick"')) + if config.get('alternative_nickname', '') != '': + self.command_join('%s/%s'% (room.name, room.own_nick+config.get('alternative_nickname', ''))) + else: + self.add_message_to_room(room, _('You can join the room with specifying an other nick, by typing "/join /other_nick"')) self.refresh_window() def private_message(self, stanza): |