summaryrefslogtreecommitdiff
path: root/qpid/python/qpid-python-test
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2009-06-02 15:28:27 +0000
committerRafael H. Schloming <rhs@apache.org>2009-06-02 15:28:27 +0000
commit6a4cfc28039f2ac0254b04f6417cd54ba7f83663 (patch)
tree26f673994407b1e3dace4806a12a9a1a99e17e20 /qpid/python/qpid-python-test
parent1274bc5a6c6cc55604fc248417ddb66b1e29986c (diff)
downloadqpid-python-6a4cfc28039f2ac0254b04f6417cd54ba7f83663.tar.gz
removed keyword arg from __import__ call for python 2.4
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@781059 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/qpid-python-test')
-rwxr-xr-xqpid/python/qpid-python-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/qpid-python-test b/qpid/python/qpid-python-test
index edfce21fec..b893d3698f 100755
--- a/qpid/python/qpid-python-test
+++ b/qpid/python/qpid-python-test
@@ -431,7 +431,7 @@ class Harness:
modules = "qpid.tests", "tests", "tests_0-10"
h = Harness()
for name in modules:
- m = __import__(name, fromlist=["dummy"])
+ m = __import__(name, None, None, ["dummy"])
h.scan(m)
filtered = [t for t in h.tests if included(t.name())]