summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-03-14 21:01:38 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-03-14 21:01:38 +0100
commitd1f69258af44a9a045934ec7115ebc3631337e62 (patch)
tree89f4b1b14472b2eba0379343b73430ce1947ce21
parent5fcc05296c289c458f95815ea3eba3a48ee2938b (diff)
settings_win: fix typo.
-rw-r--r--nephilim/settings_win.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nephilim/settings_win.py b/nephilim/settings_win.py
index 59955e4..ed6f59a 100644
--- a/nephilim/settings_win.py
+++ b/nephilim/settings_win.py
@@ -78,7 +78,7 @@ class SettingsWindow(QtGui.QWidget):
self.settings().setValue('port', QVariant(self.port_txt.text()))
reconnect = True
if self.pass_txt.text() != self.settings().value('password').toString():
- self.settings().setValue('port', QVariant(self.pass_txt.text()))
+ self.settings().setValue('password', QVariant(self.pass_txt.text()))
self.mpclient.password(self.pass_txt.text())
self.settings().setValue('music_dir', QVariant(self.lib_txt.text()))
self.settings().endGroup()