summaryrefslogtreecommitdiff
path: root/sleekxmpp/features/feature_starttls
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-02-17 14:59:56 -0800
committerLance Stout <lancestout@gmail.com>2012-02-17 14:59:56 -0800
commit7d74a7b0271c709e80f1c25e67a57dcc98d5280a (patch)
treef1cd5d6130c8a60d943833eba36ca4c6d600e5cb /sleekxmpp/features/feature_starttls
parent9d5eb864d1a370a32f933a77b48363950542c759 (diff)
downloadslixmpp-7d74a7b0271c709e80f1c25e67a57dcc98d5280a.tar.gz
slixmpp-7d74a7b0271c709e80f1c25e67a57dcc98d5280a.tar.bz2
slixmpp-7d74a7b0271c709e80f1c25e67a57dcc98d5280a.tar.xz
slixmpp-7d74a7b0271c709e80f1c25e67a57dcc98d5280a.zip
More extraneous import cleanup.
Diffstat (limited to 'sleekxmpp/features/feature_starttls')
-rw-r--r--sleekxmpp/features/feature_starttls/stanza.py2
-rw-r--r--sleekxmpp/features/feature_starttls/starttls.py4
2 files changed, 2 insertions, 4 deletions
diff --git a/sleekxmpp/features/feature_starttls/stanza.py b/sleekxmpp/features/feature_starttls/stanza.py
index 8b09ad94..b968e134 100644
--- a/sleekxmpp/features/feature_starttls/stanza.py
+++ b/sleekxmpp/features/feature_starttls/stanza.py
@@ -6,9 +6,7 @@
See the file LICENSE for copying permission.
"""
-from sleekxmpp.stanza import StreamFeatures
from sleekxmpp.xmlstream import StanzaBase, ElementBase
-from sleekxmpp.xmlstream import register_stanza_plugin
class STARTTLS(ElementBase):
diff --git a/sleekxmpp/features/feature_starttls/starttls.py b/sleekxmpp/features/feature_starttls/starttls.py
index 4e2b6621..24ff7436 100644
--- a/sleekxmpp/features/feature_starttls/starttls.py
+++ b/sleekxmpp/features/feature_starttls/starttls.py
@@ -10,8 +10,8 @@ import logging
from sleekxmpp.stanza import StreamFeatures
from sleekxmpp.xmlstream import RestartStream, register_stanza_plugin
-from sleekxmpp.xmlstream.matcher import *
-from sleekxmpp.xmlstream.handler import *
+from sleekxmpp.xmlstream.matcher import MatchXPath
+from sleekxmpp.xmlstream.handler import Callback
from sleekxmpp.plugins.base import base_plugin
from sleekxmpp.features.feature_starttls import stanza