From 4797fcce88e1d88994781587295edd7180884e27 Mon Sep 17 00:00:00 2001
From: Nikos Kouremenos <kourem@gmail.com>
Date: Sat, 7 Oct 2006 11:35:44 +0000
Subject: [PATCH] do not fail if password is None and we use GnomeKeyring

---
 src/common/passwords.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/common/passwords.py b/src/common/passwords.py
index 577913e814..3c7b7237cc 100644
--- a/src/common/passwords.py
+++ b/src/common/passwords.py
@@ -40,6 +40,8 @@ class GnomePasswordStorage(object):
 
 	def get_password(self, account_name):
 		conf = gajim.config.get_per('accounts', account_name, 'password')
+		if conf is None:
+			return None
 		try:
 			unused, auth_token = conf.split('gnomekeyring:')
 			auth_token = int(auth_token)
-- 
GitLab