We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a33535e commit 5b415c7Copy full SHA for 5b415c7
src/etc/snapshot.py
@@ -68,8 +68,7 @@ def parse_line(n, line):
68
69
match = re.match(r"([ST]) (\d{4}-\d{2}-\d{2}) ([a-fA-F\d]+)\s*$", line);
70
if (not match):
71
- raise Exception("%s:%d:%s:E syntax error: line = %s"
72
- % (snapshotfile, n, hash, line))
+ raise Exception("%s:%d:E syntax error: " % (snapshotfile, n))
73
return {"type": "snapshot",
74
"date": match.group(2),
75
"rev": match.group(3)}
0 commit comments