Skip to content

Commit

Permalink
Fixing tag command
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Aug 15, 2014
1 parent ebd4ee1 commit 3ae1cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chag/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def tag(f, border, v_prefix, sign, force):
click.echo("Using the following annotation:", err=True)
click.echo(' ' + found['contents'].replace("\n", "\n "), err=True)
try:
git.get_tag_args(tag_name, force, sign, found['contents'])
git.tag(tag_name, found['contents'], force, sign)
click.echo('[SUCCESS] Tagged %s' % tag_name, err=True)
except Exception as e:
raise click.ClickException('[FAILED] %s' % str(e))
Expand Down

0 comments on commit 3ae1cb5

Please sign in to comment.