Revert "Python3: fix bytes mark in parser/__init__.py"

This reverts commit aec8243348.
This commit is contained in:
Chris Mayo 2019-09-30 19:46:24 +01:00
parent bae4282c92
commit 0c90c718bf

View file

@ -83,7 +83,7 @@ def parse_text (url_data):
for line in url_data.get_content().splitlines():
lineno += 1
line = line.strip()
if not line or line.startswith(b'#'):
if not line or line.startswith('#'):
continue
url_data.add_url(line, line=lineno)