From 564db4f20bd7189a50a12d612d56ed6391081e83 Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Thu, 17 Jul 2008 23:05:44 +0200 Subject: fixed a silly typo --- lib/git/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/stats.py') diff --git a/lib/git/stats.py b/lib/git/stats.py index 97d2bbde..7821518f 100644 --- a/lib/git/stats.py +++ b/lib/git/stats.py @@ -19,7 +19,7 @@ class Stats(object): deletions = raw_deletions != '-' and int(raw_deletions) or 0 hsh['total']['insertions'] += insertions hsh['total']['deletions'] += deletions - hsh['total']['lines'] = insertions + deletions + hsh['total']['lines'] += insertions + deletions hsh['total']['files'] += 1 hsh['files'][filename.strip()] = {'insertions': insertions, 'deletions': deletions, -- cgit v1.2.1