Mercurial > libervia-backend
comparison src/plugins/plugin_xep_0045.py @ 2058:b4db946ddc89
plugin XEP-0045: minor docstring fix
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 09 Sep 2016 23:54:32 +0200 |
parents | b99bd02ea643 |
children | 09c18fcd8225 |
comparison
equal
deleted
inserted
replaced
2057:a52a6ed7d48f | 2058:b4db946ddc89 |
---|---|
390 return self.host.memory.getConfig(CONFIG_SECTION, 'default_muc', default_conf['default_muc']) | 390 return self.host.memory.getConfig(CONFIG_SECTION, 'default_muc', default_conf['default_muc']) |
391 | 391 |
392 def _join(self, room_jid_s, nick, options, profile_key=C.PROF_KEY_NONE): | 392 def _join(self, room_jid_s, nick, options, profile_key=C.PROF_KEY_NONE): |
393 """join method used by bridge | 393 """join method used by bridge |
394 | 394 |
395 @return: unicode (the room bare) | 395 @return (unicode): room bare jid |
396 """ | 396 """ |
397 client = self.host.getClient(profile_key) | 397 client = self.host.getClient(profile_key) |
398 if room_jid_s: | 398 if room_jid_s: |
399 muc_service = client.muc_service | 399 muc_service = client.muc_service |
400 try: | 400 try: |