diff options
author | flubshi <flubshi@web.de> | 2014-03-20 14:30:46 +0100 |
---|---|---|
committer | flubshi <flubshi@web.de> | 2014-03-20 14:30:46 +0100 |
commit | 3a8d1ab28eb9d9cd1cd8fadf7e88289e323e66dc (patch) | |
tree | 77375d9f8b56440b7c1ad96f19f7241a1eb40b8d /module/plugins/accounts | |
parent | Add multihost plugin for free-way.me (diff) | |
download | pyload-3a8d1ab28eb9d9cd1cd8fadf7e88289e323e66dc.tar.xz |
Improve free-way plugin (thanks stickell for your comments!)
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/FreeWayMe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/FreeWayMe.py b/module/plugins/accounts/FreeWayMe.py index ca895c456..087b380d9 100644 --- a/module/plugins/accounts/FreeWayMe.py +++ b/module/plugins/accounts/FreeWayMe.py @@ -31,7 +31,7 @@ class FreeWayMe(Account): def loadAccountInfo(self, user, req):
status = self.getAccountStatus(user, req)
- if status is False:
+ if not status:
return False
self.logDebug(status)
@@ -54,7 +54,7 @@ class FreeWayMe(Account): status = self.getAccountStatus(user, req)
# Check if user and password are valid
- if status is False:
+ if not status:
self.wrongPassword()
def getAccountStatus(self, user, req):
|