do not fail if password is None and we use GnomeKeyring
This commit is contained in:
parent
16d062c9b7
commit
4797fcce88
|
@ -40,6 +40,8 @@ class GnomePasswordStorage(object):
|
||||||
|
|
||||||
def get_password(self, account_name):
|
def get_password(self, account_name):
|
||||||
conf = gajim.config.get_per('accounts', account_name, 'password')
|
conf = gajim.config.get_per('accounts', account_name, 'password')
|
||||||
|
if conf is None:
|
||||||
|
return None
|
||||||
try:
|
try:
|
||||||
unused, auth_token = conf.split('gnomekeyring:')
|
unused, auth_token = conf.split('gnomekeyring:')
|
||||||
auth_token = int(auth_token)
|
auth_token = int(auth_token)
|
||||||
|
|
Loading…
Reference in New Issue