We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 725193b commit f8a4363Copy full SHA for f8a4363
cfonb/parser/common.py
@@ -94,8 +94,8 @@ def parse(self, line):
94
if line[-1] == "\n":
95
line = line[:-1]
96
if len(line) != self.size:
97
- raise ParsingError("Invalid line: %s. the len should be %s"
98
- "instead of %s"%self.size, len(line))
+ raise ParsingError("Invalid line: >%s<. the len should be %s"
+ "instead of %s" % (line, self.size, len(line)))
99
match = self.re.match(line)
100
# re check
101
if match is None:
0 commit comments