From 4b17ada5abb80b145f568e1c833a6bd0713dab38 Mon Sep 17 00:00:00 2001 From: Ahad Afzal <33332089+ahadafzal@users.noreply.github.com> Date: Sat, 24 Aug 2019 23:14:02 +0530 Subject: [PATCH] updated utils.py replace "click.echo()" with "click.secho()" to eliminate additional argument error --- keep/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keep/utils.py b/keep/utils.py index f059a470..f0ab4e55 100644 --- a/keep/utils.py +++ b/keep/utils.py @@ -334,8 +334,8 @@ def get_github_token(): token = json.load(token_file) if not token or 'token' not in token or not token['token']: - click.echo('Github access token not found :(', fg='red') - click.echo('Use the token command to store the token first', fg='red') + click.secho('Github access token not found :(', fg='red') + click.secho('Use the "keep github_token" command to store the token first', fg='red') return None return token