diff --git a/ci/push.sh b/ci/push.sh index 4470bad..30082db 100755 --- a/ci/push.sh +++ b/ci/push.sh @@ -18,6 +18,7 @@ run_pylint() { check_pylint() { PYLINT_SCORE=$(run_pylint) + echo "Pylint score: $PYLINT_SCORE" if [ "$PYLINT_SCORE" != "10.00" ] then git add pylint.svg diff --git a/manage.py b/manage.py index 34c796c..237fe99 100755 --- a/manage.py +++ b/manage.py @@ -69,7 +69,7 @@ def pylint_badge(int_only): f"Created Pylint badge for score: {pylint_score}", fg="blue", bold=True ) if int_only: - click.secho(pylint_score) + click.echo(pylint_score) except ImportError as error_exception: click.secho(f"Import error:\n{error_exception}", fg="red", bold=True)