astrand/pyobfuscate

there is error when i use byte

sjqzhang opened this issue · 0 comments

error:
charset=re.compile(b'<meta[^>]charset=['"]?([a-z0-8-]+)['"]?[^>]?>',re.IGNORECASE).findall(html)
correct:
charset=re.compile(r'<meta[^>]charset=['"]?([a-z0-8-]+)['"]?[^>]
?>',re.IGNORECASE).findall(html)