Skip to content

Commit

Permalink
fixed version compatibility issue with fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Aug 17, 2024
1 parent 128aa3d commit 1118306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/python/sliderule/sliderule.py
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ def authenticate (ps_organization, ps_username=None, ps_password=None, github_to
logger.error("Unable to authenticate %s user to %s" % (user, api))

# return login status
logger.info(f'Login status to {service_url}/{service_org}: {login_status and 'success' or 'failure'}')
logger.info(f'Login status to {service_url}/{service_org}: {login_status and "success" or "failure"}')
return login_status

#
Expand Down

0 comments on commit 1118306

Please sign in to comment.