Skip to content

Commit

Permalink
Fixup token command to output valid json.
Browse files Browse the repository at this point in the history
  • Loading branch information
asford committed Jul 18, 2018
1 parent cc91fe9 commit 476589b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git_credential_github_app_auth/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def current(appidentity):
@pass_appidentity
@click.argument('account')
def token(appidentity, account):
print(installation_token_for(account, appidentity))
print(json.dumps(installation_token_for(account, appidentity)))


@cli.add_command
Expand Down

0 comments on commit 476589b

Please sign in to comment.