Skip to content

Commit

Permalink
fixes #92
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Feb 20, 2024
1 parent 5c05f2d commit c903a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ceurws/indexparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def parse(self, limit: int = 1000000, verbose: bool = False):
"""
parse my html code for Volume info
"""
lineNo = self.find(1, '<TABLE id="MAINTABLE"')
lineNo = self.find(1, r'\s*<TABLE id="MAINTABLE"')
volCount = 0
volumes = {}
while lineNo < len(self.lines):
Expand Down

0 comments on commit c903a8b

Please sign in to comment.