diff options
author | Stefano <l.stickell@yahoo.it> | 2013-06-14 12:57:12 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-06-14 12:57:12 +0200 |
commit | 03f2a4599193ed35fc654bba5155ffd7499bdfbf (patch) | |
tree | 19892c5b9c4477e04cc6a0df95583b08666286bf /module/plugins/accounts | |
parent | RestartFailed: fixed debug messages (diff) | |
download | pyload-03f2a4599193ed35fc654bba5155ffd7499bdfbf.tar.xz |
Premium4.me -> Premium.to
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/Premium4Me.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/module/plugins/accounts/Premium4Me.py b/module/plugins/accounts/Premium4Me.py index de4fdc219..c95b9b129 100644 --- a/module/plugins/accounts/Premium4Me.py +++ b/module/plugins/accounts/Premium4Me.py @@ -2,14 +2,14 @@ from module.plugins.Account import Account class Premium4Me(Account):
__name__ = "Premium4Me"
- __version__ = "0.02"
+ __version__ = "0.03"
__type__ = "account"
- __description__ = """Premium4.me account plugin"""
- __author_name__ = ("RaNaN", "zoidberg")
- __author_mail__ = ("RaNaN@pyload.org", "zoidberg@mujmail.cz")
+ __description__ = """Premium.to account plugin"""
+ __author_name__ = ("RaNaN", "zoidberg", "stickell")
+ __author_mail__ = ("RaNaN@pyload.org", "zoidberg@mujmail.cz", "l.stickell@yahoo.it")
def loadAccountInfo(self, user, req):
- traffic = req.load("http://premium4.me/api/traffic.php?authcode=%s" % self.authcode)
+ traffic = req.load("http://premium.to/api/traffic.php?authcode=%s" % self.authcode)
account_info = {"trafficleft": int(traffic) / 1024,
"validuntil": -1}
@@ -17,7 +17,7 @@ class Premium4Me(Account): return account_info
def login(self, user, data, req):
- self.authcode = req.load("http://premium4.me/api/getauthcode.php?username=%s&password=%s" % (user, data["password"])).strip()
+ self.authcode = req.load("http://premium.to/api/getauthcode.php?username=%s&password=%s" % (user, data["password"])).strip()
if "wrong username" in self.authcode:
self.wrongPassword()
\ No newline at end of file |