Skip to content
Snippets Groups Projects
Commit 658c756f authored by Ralf Jung's avatar Ralf Jung
Browse files

gitlab-extract: show which commit the bad line was in

parent f2b0a849
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ def parse(file, parse_times = PARSE_FULL): ...@@ -41,7 +41,7 @@ def parse(file, parse_times = PARSE_FULL):
times[name] = time times[name] = time
continue continue
# nothing else we know about, ignore # nothing else we know about, ignore
print("Ignoring line",line) print("Ignoring line",line,"(in commit {})".format(commit))
# end of file. previous commit, if any, is done now. # end of file. previous commit, if any, is done now.
if commit is not None: if commit is not None:
yield Result(commit, times) yield Result(commit, times)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment