Fix string formatting in git_log_review_commits_advanced dev tool

This commit is contained in:
Campbell Barton 2024-04-02 10:17:20 +11:00
parent 32fc3c0c1c
commit cf1849aedb

@ -255,7 +255,7 @@ def gen_commit_pretty(c, unreported=None, rstate=None):
if rstate is not None:
return "* [%s] %s ({{GitCommit|rB%s}})." % (rstate, body, c.sha1.decode()[:10])
return "* %s ({{GitCommit|rB%s}})." % (rstate, body, c.sha1.decode()[:10])
return "* %s ({{GitCommit|rB%s}})." % (body, c.sha1.decode()[:10])
def gen_commit_unprettify(body):