summaryrefslogtreecommitdiff
path: root/src/connection.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-05-06 20:20:47 +0200
committermathieui <mathieui@mathieui.net>2013-05-06 20:23:33 +0200
commit48614d6cf04518a95bad4d9893a63a5c4f99b653 (patch)
tree90bb646e00189b417fe572943d895c9c4ffc3531 /src/connection.py
parentea5bfbfca4adcc0e5923e3c0b37f50e7e75b5440 (diff)
downloadpoezio-48614d6cf04518a95bad4d9893a63a5c4f99b653.tar.gz
poezio-48614d6cf04518a95bad4d9893a63a5c4f99b653.tar.bz2
poezio-48614d6cf04518a95bad4d9893a63a5c4f99b653.tar.xz
poezio-48614d6cf04518a95bad4d9893a63a5c4f99b653.zip
Fix #2286
Also fix the copy of the default config if -f is used
Diffstat (limited to 'src/connection.py')
-rw-r--r--src/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.py b/src/connection.py
index b72c8d1f..8db237c4 100644
--- a/src/connection.py
+++ b/src/connection.py
@@ -42,7 +42,7 @@ class Connection(sleekxmpp.ClientXMPP):
password = config.get('password', '') or getpass.getpass()
else: # anonymous auth
self.anon = True
- jid = config.get('server', 'anon.louiz.org')
+ jid = config.get('server', 'anon.jeproteste.info')
if resource:
jid = '%s/%s' % (jid, resource)
password = None