IGN: Oops actual fix for bug 1105

This commit is contained in:
Kovid Goyal 2008-10-02 01:35:19 -07:00
parent ce02f5c433
commit 0b7256b19b

View File

@ -16,7 +16,7 @@ class PasswordDialog(QDialog, Ui_Dialog):
self.cfg_key = re.sub(r'[^0-9a-zA-Z]', '_', name)
un = dynamic[self.cfg_key+'__un']
pw = dynamic[self.cfg_key+'__un']
pw = dynamic[self.cfg_key+'__pw']
if not un: un = ''
if not pw: pw = ''
self.gui_username.setText(un)