Commit 6b727d02 authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Strip "surrounding quotes" when generating report.

parent a47bf035
Loading
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -328,6 +328,9 @@ def commits(month_start, month_end, project, path="."):
            if re.search(pattern, author) is not None:
                continue

        if author.startswith('"') and author.endswith('"'):
            author = author[1:-1]

        skip = False
        for pattern in (
            r"^--fix-deterministic$",