Skip to content
Snippets Groups Projects
Commit 7e2f44be authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

a new exception can be raised with [10752], handle it. Fixes #4547

parent 13a2d98b
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class GnomePasswordStorage(PasswordStorage):
try:
auth_token = conf.split('gnomekeyring:')[1]
auth_token = int(auth_token)
except ValueError:
except (IndexError, ValueError):
password = conf
## migrate the password over to keyring
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment