Browse Source

Oops, fixed author parsing.

This was supposed to be part of the last commit.
Heikki Hokkanen 16 years ago
parent
commit
d1a2b53576
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      gitstats

+ 1
- 1
gitstats View File

227
 				stamp = 0
227
 				stamp = 0
228
 			timezone = parts[3]
228
 			timezone = parts[3]
229
 			if len(parts) > 4:
229
 			if len(parts) > 4:
230
-				author = ' '.join(parts[1:])
230
+				author = ' '.join(parts[4:])
231
 			date = datetime.datetime.fromtimestamp(float(stamp))
231
 			date = datetime.datetime.fromtimestamp(float(stamp))
232
 
232
 
233
 			# First and last commit stamp
233
 			# First and last commit stamp