summaryrefslogtreecommitdiff
path: root/sleekxmpp/componentxmpp.py
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@netflint.net>2009-07-11 19:41:24 +0000
committerNathan Fritz <fritzy@netflint.net>2009-07-11 19:41:24 +0000
commita3b94d51fb3d646859ecb5c50801ccbd066f858f (patch)
tree9f1948a1676183fe3920841bbb62d7596a5d2065 /sleekxmpp/componentxmpp.py
parent226f719597da390057c583e6f83ba850bb4ed334 (diff)
downloadslixmpp-a3b94d51fb3d646859ecb5c50801ccbd066f858f.tar.gz
slixmpp-a3b94d51fb3d646859ecb5c50801ccbd066f858f.tar.bz2
slixmpp-a3b94d51fb3d646859ecb5c50801ccbd066f858f.tar.xz
slixmpp-a3b94d51fb3d646859ecb5c50801ccbd066f858f.zip
fixed import bug in component
Diffstat (limited to 'sleekxmpp/componentxmpp.py')
-rwxr-xr-xsleekxmpp/componentxmpp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py
index 078a1d3f..49aa83ea 100755
--- a/sleekxmpp/componentxmpp.py
+++ b/sleekxmpp/componentxmpp.py
@@ -24,8 +24,8 @@ from . basexmpp import basexmpp
from xml.etree import cElementTree as ET
# some servers use different namespaces for components -- this is a hack, but is there for compatibility
-import xmlstream.matcher.xmlmask
-import xmlstream.matcher.xpath
+from . import xmlstream.matcher.xmlmask
+from . import xmlstream.matcher.xpath
xmlstream.matcher.xmlmask.ignore_ns = True
xmlstream.matcher.xpath.ignore_ns = True
# ----------