Skip to content

Commit

Permalink
fix login (#2569)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReimarBauer authored Oct 17, 2024
1 parent cdfd89a commit d0b1bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mslib/utils/mssautoplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def close_process_dialog(pdlg):
msc_auth_password = mslib.utils.auth.get_password_from_keyring(service_name=f"MSCOLAB_AUTH_{msc_url}",
username="mscolab")
msc_username = config["MSS_auth"][msc_url]
msc_password = mslib.utils.auth.get_password_from_keyring(service_name="MSCOLAB", username=msc_username)
msc_password = mslib.utils.auth.get_password_from_keyring(service_name=msc_url, username=msc_username)

# Choose view (top or side)
if view == "top":
Expand Down

0 comments on commit d0b1bad

Please sign in to comment.