summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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())]