# HG changeset patch # User fubar # Date 1395309882 14400 # Node ID 43ab59672f786847202680f9c0db027a4679561a # Parent d5a5f9c2c10880eb70647245f51d8cde68e5f195 Uploaded diff -r d5a5f9c2c108 -r 43ab59672f78 rgToolFactory.py --- a/rgToolFactory.py Thu Mar 20 06:00:21 2014 -0400 +++ b/rgToolFactory.py Thu Mar 20 06:04:42 2014 -0400 @@ -91,7 +91,7 @@ toolFactoryURL = 'https://bitbucket.org/fubar/galaxytoolfactory' # if we do html we need these dependencies -toolhtmldep = """ +toolhtmldepskel = """ @@ -348,9 +348,9 @@ hlp = open(self.opts.help_text,'r').read() else: hlp = 'Please ask the tool author for help as none was supplied at tool generation\n' - tooldeps = toolhtmldep % hlp + tooldepcontent = toolhtmldepskel % hlp depf = open(os.path.join(tdir,'tool_dependencies.xml'),'w') - depf.write(hlp) + depf.write(tooldepcontent) depf.write('\n') depf.close() if self.opts.input_tab <> 'None': # no reproducible test otherwise? TODO: maybe..