Skip to content

Commit 337a7d2

Browse files
committed
removed printing of username/password on JSA login
1 parent bfd1c9b commit 337a7d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elmclient/httpops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ def _jsa_login(self, auth_url, ap_redirect_url, url):
878878
if auth_url_response.status_code == 200:
879879
# use basic auth - 3iii in https://jazz.net/wiki/bin/view/Main/NativeClientAuthentication
880880
username, password = self.get_user_password(auth_url)
881-
print( f"{username=} {password=}" )
881+
# print( f"{username=} {password=}" )
882882
auth_url_response = self._session.get( str(auth_url), auth=(username, password) ) # Load up them cookies!
883883
else:
884884
logger.error('''Something about JSA OIDC login has changed since this script was written. I can no longer determine where to authorize myself.''')

0 commit comments

Comments
 (0)