From 45aa23ecffd6bd6bbfcc41706c9901cb79062ad4 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/qpid@781059 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid-python-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/qpid-python-test') 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())] -- cgit v1.2.1