diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-04-13 00:25:39 +0200 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-04-13 00:25:39 +0200 |
commit | 2d3fd06af208ee2fd95f6cf0c1f53cd18c98e3da (patch) | |
tree | efa5f16c3ac0b47e27f906e79d1102b799eccc46 /module | |
parent | [RapidgatorNet] Version up (diff) | |
download | pyload-2d3fd06af208ee2fd95f6cf0c1f53cd18c98e3da.tar.xz |
[Account] Update
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/Account.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/internal/Account.py b/module/plugins/internal/Account.py index 7ebb2111d..1971888c9 100644 --- a/module/plugins/internal/Account.py +++ b/module/plugins/internal/Account.py @@ -12,7 +12,7 @@ from module.plugins.internal.misc import Periodical, compare_time, decode, isite class Account(Plugin): __name__ = "Account" __type__ = "account" - __version__ = "0.73" + __version__ = "0.74" __status__ = "stable" __description__ = """Base account plugin""" @@ -367,9 +367,11 @@ class Account(Plugin): % (user, time_data)) if data['trafficleft'] == 0: + self.log_warning(_("Not using account `%s` because the account has no traffic left") % user) continue if time.time() > data['validuntil'] > 0: + self.log_warning(_("Not using account `%s` because the account has expired") % user) continue if data['premium']: |