Pārlūkot izejas kodu

Bugfix for line statistics.

Earlier this borked on author names containing "," (or example, wine
repository). Now it will instead check for line containing "files changed,".
Heikki Hokkanen 18 gadus atpakaļ
vecāks
revīzija
2b1cf3e22a
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      gitstats

+ 1
- 1
gitstats Parādīt failu

@@ -266,7 +266,7 @@ class GitDataCollector(DataCollector):
266 266
 				continue
267 267
 
268 268
 			# <stamp> <author>
269
-			if line.find(',') == -1:
269
+			if line.find('files changed,') == -1:
270 270
 				pos = line.find(' ')
271 271
 				(stamp, author) = (int(line[:pos]), line[pos+1:])
272 272
 				self.changes_by_date[stamp] = { 'files': files, 'ins': inserted, 'del': deleted, 'lines': total_lines }