diff options
author | Jonathan Corbet <corbet@lwn.net> | 2013-08-14 13:22:31 -0600 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2013-08-14 13:22:31 -0600 |
commit | 62726e9dff51424f2933e2526cdb84df29eb00d5 (patch) | |
tree | 9e56450bc9ed4e93fa1ca89f96a3ac5dd87f1b22 /changelogs | |
parent | 597aff28b3e4786f9b5913072ad7c8c8e9bd3e1b (diff) |
Start teaching gitlog about the database.
Diffstat (limited to 'changelogs')
-rwxr-xr-x | changelogs | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -51,25 +51,25 @@ EmptyCLPatches = { } NoSOBPatches = { } def LogSSPatch(p): - LogSSCulprit(p.author) + LogSSCulprit(p.author.name) try: - SSPatches[p.author].append(p) + SSPatches[p.author.name].append(p) except KeyError: - SSPatches[p.author] = [p] + SSPatches[p.author.name] = [p] def LogECLPatch(p): - LogEmptyCulprit(p.author) + LogEmptyCulprit(p.author.name) try: - EmptyCLPatches[p.author].append(p) + EmptyCLPatches[p.author.name].append(p) except KeyError: - EmptyCLPatches[p.author] = [p] + EmptyCLPatches[p.author.name] = [p] def LogNoSOB(p): - LogNoSOBCulprit(p.author) + LogNoSOBCulprit(p.author.name) try: - NoSOBPatches[p.author].append(p) + NoSOBPatches[p.author.name].append(p) except KeyError: - NoSOBPatches[p.author] = [p] + NoSOBPatches[p.author.name] = [p] LinusURL = 'http://git.kernel.org/linus/' def WritePatches(names, patches, file): |