Fix URL generation bug when dictifying tools.

This commit is contained in:
Jeremy Goecks
2012-08-20 09:57:25 -04:00
parent 871f72c956
commit 009bd6fed6
+1 -1
View File
@@ -2631,7 +2631,7 @@ class Tool:
if for_link:
# Create tool link.
if not self.tool_type.startswith( 'data_source' ):
link = url_for( controller='tool_runner', tool_id=self.id )
link = url_for( '/tool_runner', tool_id=self.id )
else:
link = url_for( self.action, **self.get_static_param_values( trans ) )