summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-09-06 21:05:00 +0200
committermathieui <mathieui@mathieui.net>2011-09-06 21:05:00 +0200
commitff6f829e8d382da6261790f8535002e2da393ec3 (patch)
tree5025dad8a97f163332497519279b82188df5aaf4 /src/core.py
parent1fcc2ec83c4bde4fdf1789ebceee70632972fd16 (diff)
downloadpoezio-ff6f829e8d382da6261790f8535002e2da393ec3.tar.gz
poezio-ff6f829e8d382da6261790f8535002e2da393ec3.tar.bz2
poezio-ff6f829e8d382da6261790f8535002e2da393ec3.tar.xz
poezio-ff6f829e8d382da6261790f8535002e2da393ec3.zip
Fixes #2235
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index 6deb3643..bda47aa3 100644
--- a/src/core.py
+++ b/src/core.py
@@ -92,7 +92,7 @@ class Core(object):
self.information_buffer.add_window(self.information_win)
self.tabs = []
self.previous_tab_nb = 0
- self.own_nick = config.get('own_nick', '') or self.xmpp.boundjid.user
+ self.own_nick = config.get('default_nick', '') or self.xmpp.boundjid.user
# global commands, available from all tabs
# a command is tuple of the form:
# (the function executing the command. Takes a string as argument,