From 88458043bb3f7bbe540400ff3c060748c0356ec9 Mon Sep 17 00:00:00 2001 From: Zev Benjamin Date: Mon, 3 Mar 2014 14:46:21 -0500 Subject: [PATCH] jabber_mirror: Change the default resource to 'zulip' (imported from commit 290dca7fce5230dc94425478ad48fb8b8a0952b6) --- bots/jabber_mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/jabber_mirror.py b/bots/jabber_mirror.py index 49d75eb..d9e5722 100755 --- a/bots/jabber_mirror.py +++ b/bots/jabber_mirror.py @@ -63,7 +63,7 @@ class JabberToZulipBot(ClientXMPP): def __init__(self, jid, password, rooms, openfire=False): self.nick = jid.username if not jid.resource: - jid.resource = "jabber_mirror" + jid.resource = "zulip" ClientXMPP.__init__(self, jid, password) self.password = password self.rooms = set()