diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-17 15:34:08 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-17 15:34:08 +0200 |
commit | e921a8a45fa785db160d2b1e518e871028454d2f (patch) | |
tree | 018a10e5d742bbfdfa08f206efc892ccbf450685 /module/web | |
parent | account update (diff) | |
download | pyload-e921a8a45fa785db160d2b1e518e871028454d2f.tar.xz |
cleaned pluginsv0.4
Diffstat (limited to 'module/web')
-rw-r--r-- | module/web/pyload/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py index 874f25ebf..8c32d36a4 100644 --- a/module/web/pyload/views.py +++ b/module/web/pyload/views.py @@ -351,7 +351,7 @@ def config(request): elif action == "password": for acc in accs[skey]: - if acc["login"] == name and acc["password"] != value: + if acc["login"] == name and value.strip(): settings.PYLOAD.update_account(skey, name, value) elif okey == "newacc" and value: |