Missing import for gnomekeyring

follow on to previous attempt to fix to bug 1116302,
looks like we missed an import

Fixes LP#1116302

Change-Id: If56e3cedaa63a594907bb851a2701bd64806ed85
This commit is contained in:
Davanum Srinivas 2013-02-21 11:41:02 -05:00
parent 5c8caf06e9
commit 34c8a6bb7a

@ -35,6 +35,7 @@ try:
HAS_KEYRING = True
try:
if isinstance(keyring.get_keyring(), keyring.backend.GnomeKeyring):
import gnomekeyring
KeyringIOError = gnomekeyring.IOError
else:
KeyringIOError = IOError