Commit 22a11903 authored by Chris McDonough's avatar Chris McDonough

Fix minor error in getSuiteFromFile where the name "join" could not be found.

parent edba9075
......@@ -53,6 +53,7 @@ class TestRunner:
name, ext=os.path.splitext(filename)
file, pathname, desc=imp.find_module(name, [path])
saved_syspath = sys.path[:]
module = None
try:
sys.path.append(path) # let module find things in its dir
try:
......@@ -61,7 +62,7 @@ class TestRunner:
(tb_t, tb_v, tb_tb) = sys.exc_info()
self.report("Module %s failed to load\n%s: %s" % (pathname,
tb_t, tb_v))
self.report(join( traceback.format_tb(tb_tb)) + '\n')
self.report(string.join(traceback.format_tb(tb_tb)) + '\n')
del tb_tb
finally:
file.close()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment