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
path: root/src
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2006-10-09 14:17:53 +0400
committerYann Leboulanger <asterix@lagaule.org>2006-10-09 14:17:53 +0400
commit4af1f561360badf5f03294c93ff066489af641cd (patch)
tree06ce17887870abdf15ecb1d17ff5376d4190cbaa /src
parentb821d23f7059732c8121aea583471de9bfbfed4d (diff)
really save passphrase when we check "save password" checkbutton
Diffstat (limited to 'src')
-rw-r--r--src/common/passwords.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/passwords.py b/src/common/passwords.py
index 3c7b7237c..7ac8aed68 100644
--- a/src/common/passwords.py
+++ b/src/common/passwords.py
@@ -31,6 +31,7 @@ class SimplePasswordStorage(object):
return gajim.config.get_per('accounts', account_name, 'password')
def save_password(self, account_name, password):
+ gajim.config.set_per('accounts', account_name, 'password', password)
gajim.connections[account_name].password = password