Skip to content

Commit

Permalink
Turn into non-f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
jl-wynen committed Jun 14, 2022
1 parent f75027c commit b2a93e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyscicat/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ def from_credentials(base_url: str, username: str, password: str):
def get_token(base_url, username, password):
"""logs in using the provided username / password combination
and receives token for further communication use"""
logger.info(f" Getting new token")
logger.info(" Getting new token")
if base_url[-1] != "/":
base_url = base_url + "/"
response = requests.post(
Expand Down

0 comments on commit b2a93e5

Please sign in to comment.