From 6a4cfc28039f2ac0254b04f6417cd54ba7f83663 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Tue, 2 Jun 2009 15:28:27 +0000 Subject: 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 --- qpid/python/qpid-python-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/python/qpid-python-test') 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())] -- cgit v1.2.1