diff options
author | Lance Stout <lancestout@gmail.com> | 2011-10-04 10:36:52 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-10-04 10:36:52 -0400 |
commit | eccac859adbf8c24d6af14f428f2af19ce0b609d (patch) | |
tree | 5e6a86569a71978a71919ee9d3ee297cc4807719 /sleekxmpp/plugins | |
parent | e37adace62ee7bb8a29f661ac33853d94456d35f (diff) | |
download | slixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.tar.gz slixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.tar.bz2 slixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.tar.xz slixmpp-eccac859adbf8c24d6af14f428f2af19ce0b609d.zip |
Fix missing import statement.
Fixes issue #105
Diffstat (limited to 'sleekxmpp/plugins')
-rw-r--r-- | sleekxmpp/plugins/xep_0045.py | 1 |
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__) |