summaryrefslogtreecommitdiff
path: root/debian/patches/0005-author-name.patch
blob: 69f4f52542f8f92995e11cca5a1b33ea320a853a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Author: Daniel Baumann <mail@daniel-baumann.ch>
Description: Use author_name instead of author in Git notifications.

diff -Naurp irker.orig/irkerhook.py irker/irkerhook.py
--- irker.orig/irkerhook.py
+++ irker/irkerhook.py
@@ -281,7 +281,7 @@ class GitExtractor(GenericExtractor):
         # Might be be nice to ship the full email address, if not
         # for spammers' address harvesters - getting this wrong
         # would make the freenode #commits channel into harvester heaven.
-        commit.author = commit.mail.split("@")[0]
+        commit.author = commit.author_name
         commit.author_date, commit.commit_date = \
             do("git log -1 '--pretty=format:%ai|%ci' " + shellquote(commit.commit)).split("|")
         return commit