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>2023-06-30 16:30:38 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-06-30 16:30:38 +0300
commit5d3d2d609f456029bb3419e085fdd29314120b47 (patch)
tree22b96eb0ea5c3d50438cf27ff431a801a78592d0
parent77c9a1197e39b09fab727bd125d5766ad51d8b61 (diff)
imprv: Client: Return only copy of ignored errors
-rw-r--r--nbxmpp/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/client.py b/nbxmpp/client.py
index 68aad6f..c777017 100644
--- a/nbxmpp/client.py
+++ b/nbxmpp/client.py
@@ -203,7 +203,7 @@ class Client(Observable):
@property
def ignored_tls_errors(self):
- return self._ignored_tls_errors
+ return set(self._ignored_tls_errors)
def set_ignored_tls_errors(self, errors):
if errors is None: