Skip to content

Commit

Permalink
Fix workflow extraction from history
Browse files Browse the repository at this point in the history
Fix history extraction by returning value dictionary

Remove previous fix
  • Loading branch information
guerler committed Oct 21, 2015
1 parent 92666cd commit ee32770
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/galaxy/tools/__init__.py
Expand Up @@ -2398,6 +2398,11 @@ def jsonify(v):
return 'true'
else:
return 'false'
elif isinstance(v, UnvalidatedValue):
return {
'__class__' : 'UnvalidatedValue',
'value' : value.value
}
elif isinstance(v, basestring) or isnumber:
return v
elif isinstance(v, dict) and hasattr(v, '__class__'):
Expand Down

0 comments on commit ee32770

Please sign in to comment.