Skip to content
This repository has been archived by the owner on Mar 26, 2023. It is now read-only.

Commit

Permalink
Strip hax
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobby233Liu authored May 1, 2021
1 parent f15d61a commit a610c4f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,8 @@ def cleanup(input_file, output):
try:
_sub_comicid = _find_first_comicid(_loop_line, ln=i + i2)
except: # line has no comicid header?
print("WARNING: malfromed line #%s from %s" % (i + i2, i))
if _loop_line == "-" * len(_loop_line) or _loop_line == "." * len(_loop_line):
print("skip")
else:
pass
#_proc_line += " " + _loop_line
if not (_loop_line == "-" * len(_loop_line) or _loop_line == "." * len(_loop_line)):
_proc_line += " " + _loop_line
_skip_ahead += 1
continue

Expand Down

0 comments on commit a610c4f

Please sign in to comment.