summaryrefslogtreecommitdiff
path: root/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
commit45aa23ecffd6bd6bbfcc41706c9901cb79062ad4 (patch)
treea93e4b163d8f79e68a64d7395486c4812131cad2 /python/qpid-python-test
parent45a5239daf0460964b011e57c16a98c30f671901 (diff)
downloadqpid-python-45aa23ecffd6bd6bbfcc41706c9901cb79062ad4.tar.gz
removed keyword arg from __import__ call for python 2.4
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@781059 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid-python-test')
-rwxr-xr-xpython/qpid-python-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid-python-test b/python/qpid-python-test
index edfce21fec..b893d3698f 100755
--- a/python/qpid-python-test
+++ b/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())]