Index: tools/test.py |
=================================================================== |
--- tools/test.py (revision 1354) |
+++ tools/test.py (working copy) |
@@ -544,7 +544,7 @@ |
file = None |
try: |
(file, pathname, description) = imp.find_module('testcfg', [ self.path ]) |
- module = imp.load_module(self.path, file, pathname, description) |
+ module = imp.load_module('testcfg', file, pathname, description) |
self.config = module.GetConfiguration(context, self.path) |
finally: |
if file: |