diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2009-06-02 15:28:27 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2009-06-02 15:28:27 +0000 |
| commit | 6a4cfc28039f2ac0254b04f6417cd54ba7f83663 (patch) | |
| tree | 26f673994407b1e3dace4806a12a9a1a99e17e20 /qpid/python/qpid-python-test | |
| parent | 1274bc5a6c6cc55604fc248417ddb66b1e29986c (diff) | |
| download | qpid-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-x | qpid/python/qpid-python-test | 2 |
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())] |
