summaryrefslogtreecommitdiff
path: root/python/mllib/dom.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2007-08-22 18:48:49 +0000
committerRafael H. Schloming <rhs@apache.org>2007-08-22 18:48:49 +0000
commit737f9a39b069e9094de335e44e5517d293195daa (patch)
tree39a7ba669a7817d37e04e4da5482cfbbe86e027a /python/mllib/dom.py
parent51c4f612aec73b473477cacb786865c76284e002 (diff)
downloadqpid-python-737f9a39b069e9094de335e44e5517d293195daa.tar.gz
removed circular from imports
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@568726 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/mllib/dom.py')
-rw-r--r--python/mllib/dom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mllib/dom.py b/python/mllib/dom.py
index d95326d1a1..10b19d6db1 100644
--- a/python/mllib/dom.py
+++ b/python/mllib/dom.py
@@ -25,7 +25,7 @@ from __future__ import division
from __future__ import generators
from __future__ import nested_scopes
-from transforms import Text
+import transforms
class Container:
@@ -110,7 +110,7 @@ class Node(Container, Component, Dispatcher):
return nd
def text(self):
- return self.dispatch(Text())
+ return self.dispatch(transforms.Text())
def tag(self, name, *attrs, **kwargs):
t = Tag(name, *attrs, **kwargs)