errorhandling #2
@ -229,10 +229,14 @@ class Config:
|
||||
"""
|
||||
if realm.account is None:
|
||||
raise RuntimeError("Can't get password without acccount - should use kerberos instead")
|
||||
|
||||
try:
|
||||
if self.password_manager:
|
||||
password = self.password_manager.get_password(realm.password_name)
|
||||
else:
|
||||
password = getpass.getpass(f"Enter password for {realm.password_name}: ")
|
||||
except (KeyboardInterrupt, EOFError):
|
||||
exit()
|
||||
|
||||
if password:
|
||||
return password
|
||||
|
Loading…
Reference in New Issue
Block a user