From d1a2b53576889a22d9bd7d0ec3d71c9df6cf3879 Mon Sep 17 00:00:00 2001 From: Heikki Hokkanen Date: Wed, 23 Dec 2009 22:04:23 +0200 Subject: [PATCH] Oops, fixed author parsing. This was supposed to be part of the last commit. --- gitstats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitstats b/gitstats index ff28892..21809d4 100755 --- a/gitstats +++ b/gitstats @@ -227,7 +227,7 @@ class GitDataCollector(DataCollector): stamp = 0 timezone = parts[3] if len(parts) > 4: - author = ' '.join(parts[1:]) + author = ' '.join(parts[4:]) date = datetime.datetime.fromtimestamp(float(stamp)) # First and last commit stamp -- 2.11.4.GIT