Skip to content

Commit

Permalink
Merge pull request #26 from MrAnno/kwallet-workaround
Browse files Browse the repository at this point in the history
config: use keyring.get_password() as a workaround for a kwallet bug
  • Loading branch information
László Vaskó authored Sep 6, 2020
2 parents a9c9853 + c9ca19a commit 7bbdaaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openconnect_sso/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class Credentials(ConfigNode):

@property
def password(self):
return keyring.get_credential(APP_NAME, self.username).password
return keyring.get_password(APP_NAME, self.username)

@password.setter
def password(self, value):
Expand Down

0 comments on commit 7bbdaaf

Please sign in to comment.