summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-10-04 10:36:52 -0400
committerLance Stout <lancestout@gmail.com>2011-10-04 10:36:52 -0400
commiteccac859adbf8c24d6af14f428f2af19ce0b609d (patch)
tree5e6a86569a71978a71919ee9d3ee297cc4807719
parente37adace62ee7bb8a29f661ac33853d94456d35f (diff)
downloadslixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.tar.gz
slixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.tar.bz2
slixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.tar.xz
slixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.zip
Fix missing import statement.
Fixes issue #105
-rw-r--r--sleekxmpp/plugins/xep_0045.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0045.py b/sleekxmpp/plugins/xep_0045.py
index 338ed154..8bf67e1d 100644
--- a/sleekxmpp/plugins/xep_0045.py
+++ b/sleekxmpp/plugins/xep_0045.py
@@ -14,6 +14,7 @@ from .. stanza.presence import Presence
from .. xmlstream.handler.callback import Callback
from .. xmlstream.matcher.xpath import MatchXPath
from .. xmlstream.matcher.xmlmask import MatchXMLMask
+from sleekxmpp.exceptions import IqError, IqTimeout
log = logging.getLogger(__name__)