diff options
author | Stefano <l.stickell@yahoo.it> | 2013-10-23 13:03:37 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-10-23 13:03:37 +0200 |
commit | 29a62c4b9886d31bfa4b5e70db44eb59330bbe28 (patch) | |
tree | 47bb81dfb3eba95944dbf1efeb1096477cad8c4e /module/plugins/hoster/MegasharesCom.py | |
parent | NCryptIn: better folder name detect (diff) | |
parent | Hosters: replaced line continuation with brackets (diff) | |
download | pyload-29a62c4b9886d31bfa4b5e70db44eb59330bbe28.tar.xz |
Merge pull request #331 from vuolter/s/hoster_lc
Hosters: replace line continuation with brackets
Diffstat (limited to 'module/plugins/hoster/MegasharesCom.py')
-rw-r--r-- | module/plugins/hoster/MegasharesCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/MegasharesCom.py b/module/plugins/hoster/MegasharesCom.py index 4e43d4a00..134c44334 100644 --- a/module/plugins/hoster/MegasharesCom.py +++ b/module/plugins/hoster/MegasharesCom.py @@ -70,9 +70,9 @@ class MegasharesCom(SimpleHoster): "http://d01.megashares.com/index.php?secgfx=gfx&random_num=%s" % random_num) self.logInfo("Reactivating passport %s: %s %s" % (passport_num, random_num, verifyinput)) - url = "http://d01.megashares.com%s&rs=check_passport_renewal" % request_uri + \ - "&rsargs[]=%s&rsargs[]=%s&rsargs[]=%s" % (verifyinput, random_num, passport_num) + \ - "&rsargs[]=replace_sec_pprenewal&rsrnd=%s" % str(int(time() * 1000)) + url = ("http://d01.megashares.com%s&rs=check_passport_renewal" % request_uri + + "&rsargs[]=%s&rsargs[]=%s&rsargs[]=%s" % (verifyinput, random_num, passport_num) + + "&rsargs[]=replace_sec_pprenewal&rsrnd=%s" % str(int(time() * 1000)) self.logDebug(url) response = self.load(url) |