Skip to content

Commit

Permalink
Adjust to new workflow editor entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Feb 1, 2024
1 parent 7d10c02 commit 5a5ce75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo/commands/cmd_workflow_edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def cli(ctx, workflow_identifier, output=None, force=False, **kwds):
with engine_context(ctx, **kwds) as galaxy_engine:
with galaxy_engine.ensure_runnables_served([runnable]) as config:
workflow_id = config.workflow_id_for_runnable(runnable)
url = f"{config.galaxy_url}/workflow/editor?id={workflow_id}"
url = f"{config.galaxy_url}/workflows/edit?id={workflow_id}"
click.launch(url)
if kwds["engine"] != "external_galaxy":
sleep_for_serve()

0 comments on commit 5a5ce75

Please sign in to comment.