version 0.3.98

This commit is contained in:
Kovid Goyal 2007-08-17 20:36:29 +00:00
parent 4601d8a257
commit f8a03f318d
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
## with this program; if not, write to the Free Software Foundation, Inc., ## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
''' E-book management software''' ''' E-book management software'''
__version__ = "0.3.97" __version__ = "0.3.98"
__docformat__ = "epytext" __docformat__ = "epytext"
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
__appname__ = 'libprs500' __appname__ = 'libprs500'

View File

@ -30,7 +30,7 @@ class PasswordDialog(QDialog, Ui_Dialog):
un = settings.value(name+': un', QVariant('')).toString() un = settings.value(name+': un', QVariant('')).toString()
pw = settings.value(name+': pw', QVariant('')).toString() pw = settings.value(name+': pw', QVariant('')).toString()
self.gui_username.setText(un) self.gui_username.setText(un)
self.gui_username.setText(pw) self.gui_password.setText(pw)
self.sname = name self.sname = name
self.msg.setText(msg) self.msg.setText(msg)