Skip to content

Commit 5b415c7

Browse files
committed
Revert bogus snapshot.py change
1 parent a33535e commit 5b415c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/etc/snapshot.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ def parse_line(n, line):
6868

6969
match = re.match(r"([ST]) (\d{4}-\d{2}-\d{2}) ([a-fA-F\d]+)\s*$", line);
7070
if (not match):
71-
raise Exception("%s:%d:%s:E syntax error: line = %s"
72-
% (snapshotfile, n, hash, line))
71+
raise Exception("%s:%d:E syntax error: " % (snapshotfile, n))
7372
return {"type": "snapshot",
7473
"date": match.group(2),
7574
"rev": match.group(3)}

0 commit comments

Comments
 (0)