summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-04-24 20:56:31 +0200
committermathieui <mathieui@mathieui.net>2021-07-03 11:17:15 +0200
commit451bee0892077b09d42580153dbd0c92d193f8d8 (patch)
tree353dc7dea687d26e1b55f87a9378062f9e51fcd7
parent00d38c1b29dfa198db940156c670370762857138 (diff)
downloadslixmpp-451bee0892077b09d42580153dbd0c92d193f8d8.tar.gz
slixmpp-451bee0892077b09d42580153dbd0c92d193f8d8.tar.bz2
slixmpp-451bee0892077b09d42580153dbd0c92d193f8d8.tar.xz
slixmpp-451bee0892077b09d42580153dbd0c92d193f8d8.zip
starttls: make the starttls element inherit from stanzabase
-rw-r--r--slixmpp/features/feature_starttls/stanza.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/features/feature_starttls/stanza.py b/slixmpp/features/feature_starttls/stanza.py
index 5552cf61..2f971723 100644
--- a/slixmpp/features/feature_starttls/stanza.py
+++ b/slixmpp/features/feature_starttls/stanza.py
@@ -6,7 +6,7 @@
from slixmpp.xmlstream import StanzaBase, ElementBase
-class STARTTLS(ElementBase):
+class STARTTLS(StanzaBase):
"""
"""