Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-12-04 10:07:12 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-04 10:07:12 +0300
commit7e2f44bee50e475917b6723b145d85fa4a07b5a3 (patch)
tree7f4363f365bd7ece089f39b4a012785ca0053c91
parent13a2d98bcf60fa6b9b6cf24419090dbbf40e6987 (diff)
a new exception can be raised with [10752], handle it. Fixes #4547
-rw-r--r--src/common/passwords.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/passwords.py b/src/common/passwords.py
index 14b1cdcd9..84ef09fa9 100644
--- a/src/common/passwords.py
+++ b/src/common/passwords.py
@@ -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: