rebase servers

This commit is contained in:
marco
2020-03-06 20:50:52 +01:00
parent a2c4aeb93b
commit 2ecdf23042
193 changed files with 5798 additions and 509 deletions
Regular → Executable
+1 -1
View File
@@ -13,7 +13,7 @@ def get_long_url(short_url):
data = httptools.downloadpage(short_url).data
ysmm = scrapertools.find_single_match(data, "var ysmm = '([^']+)';")
b64 = ""
for i in reversed(range(len(ysmm))):
for i in reversed(list(range(len(ysmm)))):
if i % 2:
b64 = b64 + ysmm[i]
else: