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

github.com/mrDoctorWho/xmpppy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Smith <mrdoctorwho@helldev.net>2018-12-08 15:50:16 +0300
committerJohn Smith <mrdoctorwho@helldev.net>2018-12-08 15:50:16 +0300
commit99c9b1519f9227ead66801a633a9176b6e52f5b7 (patch)
treefa3bb40ad2ab2f126e83709f8f0cf4501350012d
parentd2345130703d8cb956c11e6986874b0a69ce728f (diff)
fix dns library name
-rw-r--r--xmpp/transports.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp/transports.py b/xmpp/transports.py
index aeec11a..471208e 100644
--- a/xmpp/transports.py
+++ b/xmpp/transports.py
@@ -43,7 +43,7 @@ from .protocol import *
# http://pydns.sourceforge.net
try:
- import dns
+ import DNS as dns
except ImportError:
dns = None