put a comment

This commit is contained in:
Nikos Kouremenos 2006-10-06 00:04:07 +00:00
parent e620b4bff3
commit cc4bdf92e2
1 changed files with 2 additions and 2 deletions

View File

@ -60,14 +60,14 @@ class GnomePasswordStorage(object):
auth_token = gnomekeyring.item_create_sync(
self.keyring, gnomekeyring.ITEM_GENERIC_SECRET,
display_name, attributes, password, update)
token = 'gnomekeyring:%i' % (auth_token,)
token = 'gnomekeyring:%i' % auth_token
gajim.config.set_per('accounts', account_name, 'password', token)
storage = None
def get_storage():
global storage
if storage is None:
if storage is None: # None is only in first time get_storage is called
if USER_HAS_GNOMEKEYRING:
#FIXME: detect if we're running under GNOME or not
#before deciding to use the GnomeKeyring backend