GTG

Comment 1 for bug 1086663

Revision history for this message
Jeff Fortin Tam (kiddo) wrote :

From discussing with Izidor, it seems my hunch is right and that this is because of an API break in the keyring.

A proper solution is Izidor's work towards switching everything to gobject introspection, but this does not provide an immediate fix.

However, there is a workaround. The current module checks for the presence of gnomekeyring, and if it fails to import, it uses a fallback keyring module, which works fine. The problem is of course that gnomekeyring is imported correctly, but the API changed so it can't be used.

As per our discussion, the only way to provide a fix for users until the next release is to patch tools/keyring.py so that it looks like this:

#try:
# import gnomekeyring
#except ImportError:
# gnomekeyring = None
# As per discussion with upstream, this is a silly workaround for LP bug #1086663,
# because 0.3 does not match the changed keyring API:
gnomekeyring = None