This commit is contained in:
Costa Shulyupin 2018-07-21 23:01:48 +03:00
parent bb32eaa711
commit bd9e324f6c
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ def log(*args, **kwargs):
def popen(p): def popen(p):
return [str(a) for a in subprocess.check_output(p, shell=True).splitlines()] return [a.decode('utf-8') for a in subprocess.check_output(p, shell=True)
.splitlines()]
def extract_referer(line): def extract_referer(line):