Skip to content

Commit

Permalink
tool_list.py should now use tool_conf.xml not tool_conf.xml.sample
Browse files Browse the repository at this point in the history
See a94473459ebb4749a375420492d6da9a948ccd3a where the rest of the run_functional_tests.sh system was updated.
  • Loading branch information
peterjc committed Aug 12, 2014
1 parent eade819 commit bf75b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#--------read tool_conf.xml.sample to get all the tool xml file names-----------
onoff = 1
tool_list = []
for line in open("tool_conf.xml.sample", "r"):
for line in open("tool_conf.xml", "r"):
if line.find("<!--") != -1:
onoff = 0
if line.find("file") != -1 and onoff==1:
Expand Down

0 comments on commit bf75b0c

Please sign in to comment.