mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-20 06:10:59 +00:00
Revert "Python3: fix bytes mark in parser/__init__.py"
This reverts commit aec8243348.
This commit is contained in:
parent
bae4282c92
commit
0c90c718bf
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue