From 8e72a239189935584fb5b43c902e8734f3e4d6ac Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 3 Jan 2012 20:17:33 +0100 Subject: [PATCH] use 'login' keyring as default keyring instead of 'default'. Fixes #7067 --- src/common/passwords.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/passwords.py b/src/common/passwords.py index c6fcc36c6..e810f72c0 100644 --- a/src/common/passwords.py +++ b/src/common/passwords.py @@ -63,7 +63,7 @@ class GnomePasswordStorage(PasswordStorage): def __init__(self): self.keyring = gnomekeyring.get_default_keyring_sync() if self.keyring is None: - self.keyring = 'default' + self.keyring = 'login' try: gnomekeyring.create_sync(self.keyring, None) except gnomekeyring.AlreadyExistsError: