decode strings from GTK

This commit is contained in:
Yann Leboulanger 2008-09-02 07:12:56 +00:00
parent 66f8bab7d6
commit 4fa573a3bd
1 changed files with 2 additions and 1 deletions

View File

@ -1836,7 +1836,8 @@ class AccountsWindow:
def on_password_entry1_changed(self, widget):
if self.ignore_events:
return
passwords.save_password(self.current_account, widget.get_text())
passwords.save_password(self.current_account, widget.get_text().decode(
'utf-8'))
def on_save_password_checkbutton1_toggled(self, widget):
if self.ignore_events: