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:
-rw-r--r--nbxmpp/protocol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/protocol.py b/nbxmpp/protocol.py
index bed2e39..9c7b8e7 100644
--- a/nbxmpp/protocol.py
+++ b/nbxmpp/protocol.py
@@ -905,7 +905,7 @@ class JID:
@property
def isFull(self):
- return self.domain and self.node and self.resource
+ return bool(self.domain and self.node and self.resource)
def __eq__(self, other):
"""