Skip to content

Commit

Permalink
Attempt to fix missing command_line in output json.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed May 12, 2016
1 parent c93e722 commit e38c436
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion planemo/galaxy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,12 @@ def config_join(*args):
)
tool_config_file = "%s,%s" % (tool_conf, shed_tool_conf)
user_email = kwds.get("galaxy_email")
# Setup both galaxy_email and older test user test@bx.psu.edu
# as admins for command_line, etc...
properties = dict(
single_user=user_email,
admin_users=user_email,
admin_users="%s,test@bx.psu.edu" % user_email,
expose_dataset_path="True",
ftp_upload_dir_template="${ftp_upload_dir}",
ftp_upload_purge="False",
ftp_upload_dir=test_data_dir or os.path.abspath('.'),
Expand Down

0 comments on commit e38c436

Please sign in to comment.