Skip to content

Commit

Permalink
echo browse_url after making a ticket (#192)
Browse files Browse the repository at this point in the history
\n(feature/188_ensure_url_to_ticket_is_printed)
  • Loading branch information
aramnhammer committed Jun 16, 2020
1 parent 33a25bc commit b4d64d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zazu/dev/commands.py
Expand Up @@ -206,7 +206,7 @@ def start(config, name, no_verify, head, rename_flag, type):
no_verify = True # Making the ticket implicitly verifies it.
except zazu.issue_tracker.IssueTrackerError as e:
raise click.ClickException(str(e))
click.echo('Created ticket "{}"'.format(name))
click.echo('Created ticket "{}": {}'.format(name, config.issue_tracker.browse_url(name)))
issue_descriptor = make_issue_descriptor(name)
# Sync with the background fetch process before touching the git repo.
if not (head or rename_flag):
Expand Down

0 comments on commit b4d64d8

Please sign in to comment.