Commit d12ac69e authored by Fred Drake's avatar Fred Drake

parent 3b564de0
......@@ -120,7 +120,8 @@ def main():
opts.append(args[0])
del args[0]
if not args:
args = glob.glob(os.path.join("test", "test*.xml"))
prefix = os.path.join("test", "test*.")
args = glob.glob(prefix + "xml") + glob.glob(prefix + "html")
for arg in args:
print arg,
sys.stdout.flush()
......
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