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:
authorlovetox <philipp@hoerist.com>2020-03-11 19:21:51 +0300
committerlovetox <philipp@hoerist.com>2020-03-11 21:00:54 +0300
commit56581a8797482bf97109f825bdeb94bcd8735eeb (patch)
treefecca065e616689063050f7e92cdcfa0ff9ef8d0 /nbxmpp/const.py
parent9be1dfa2ccc14a8a24a052696ef863fac29d09a2 (diff)
Rename ConnectionType enum values
Diffstat (limited to 'nbxmpp/const.py')
-rw-r--r--nbxmpp/const.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nbxmpp/const.py b/nbxmpp/const.py
index ef19585..d4479fb 100644
--- a/nbxmpp/const.py
+++ b/nbxmpp/const.py
@@ -320,9 +320,9 @@ class AdHocNoteType(Enum):
class ConnectionType(Enum):
- DIRECT_TLS = 'ssl'
- START_TLS = 'tls'
- PLAIN = 'plain'
+ DIRECT_TLS = 'DIRECT TLS'
+ START_TLS = 'START TLS'
+ PLAIN = 'PLAIN'
@property
def is_direct_tls(self):