Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-08-21 19:00:16 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-08-21 19:11:32 +0300
commitd2d5a3778c193b35e92347a5ee80db1e6a17f1c9 (patch)
treebd9d31c4b3a0c63b6f2cb36dcc1c22a91bd90757 /nbxmpp/structs.py
parent8802bc7bb76bcf52dee7dfabec267bc1f44aa98d (diff)
DiscoInfo: Rename attribute
Diffstat (limited to 'nbxmpp/structs.py')
-rw-r--r--nbxmpp/structs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/structs.py b/nbxmpp/structs.py
index 7d9ed13..ec33853 100644
--- a/nbxmpp/structs.py
+++ b/nbxmpp/structs.py
@@ -200,7 +200,7 @@ class DiscoInfo(namedtuple('DiscoInfo', 'stanza identities features dataforms ti
return False
@property
- def muc_name(self):
+ def muc_identity_name(self):
for identity in self.identities:
if identity.category == 'conference':
return identity.name