Make compatible with Python 3

pull/142/head
Mateusz Piotrowski 4 years ago committed by GitHub
parent 681d7bb639
commit b6ec4005de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,7 +4,7 @@ from __future__ import print_function
from hashlib import sha1
from subprocess import Popen, PIPE, STDOUT
data = open("index.html", "r").read()
data = open("index.html", "rb").read()
for line in open("cmds.txt", "r"):
line = line.strip()

Loading…
Cancel
Save