Skip to content

Commit

Permalink
Fix default parameters for 3rd party workflow import controller
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Apr 9, 2018
1 parent 75c2c4f commit 2cb4d52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/webapps/galaxy/controllers/workflow.py
Expand Up @@ -750,8 +750,8 @@ def import_workflow(self, trans, **kwd):
"""
message = ""
status = "done"
workflow_text = kwd.get('workflow_text', '')
workflow_source = kwd.get('workflow_source', 'uploaded file')
workflow_text = kwd.get('workflow_text')
workflow_source = kwd.get('workflow_source')
if workflow_text:
# Convert incoming workflow data from json
try:
Expand Down

0 comments on commit 2cb4d52

Please sign in to comment.