mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-24 16:30:27 +08:00
tool_list.py should now use tool_conf.xml not tool_conf.xml.sample
See a94473459ebb4749a375420492d6da9a948ccd3a where the rest of the run_functional_tests.sh system was updated.
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@ import os,sys
|
||||
#--------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:
|
||||
|
||||
Reference in New Issue
Block a user