diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-10 17:49:14 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-10 17:49:14 +0200 |
commit | 8e15c1af88b61cebda68a3b40352bf388c2010c7 (patch) | |
tree | bd1fb40094d907ccad41b4770f947cf9cac020cf /module/plugins/internal/Account.py | |
parent | Merge branch 'pr/n1997_GammaC0de' into stable (diff) | |
download | pyload-8e15c1af88b61cebda68a3b40352bf388c2010c7.tar.xz |
Spare code cosmetics (3)
Diffstat (limited to 'module/plugins/internal/Account.py')
-rw-r--r-- | module/plugins/internal/Account.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/Account.py b/module/plugins/internal/Account.py index a1ecdd76f..410a02671 100644 --- a/module/plugins/internal/Account.py +++ b/module/plugins/internal/Account.py @@ -11,9 +11,9 @@ from module.utils import compare_time, lock class Account(Plugin): - __name__ = "Account" + __name = "Account" __type__ = "account" - __version__ = "0.60" + __version__ = "0.61" __status__ = "testing" __description__ = """Base account plugin""" @@ -335,7 +335,7 @@ class Account(Plugin): 'premium' : None, 'timestamp' : 0, 'trafficleft': None, - 'type' : self.__name__, + 'type' : self.__name, 'valid' : None, 'validuntil' : None} |