diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-07-17 23:05:44 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-07-17 23:05:44 +0200 |
commit | 564db4f20bd7189a50a12d612d56ed6391081e83 (patch) | |
tree | 6c1ec74fee05b64f39a5fac75240fbc3050de1f4 /lib/git/stats.py | |
parent | 924da9604d6474fd1be99dffdcc539eaaaa31626 (diff) | |
download | gitpython-564db4f20bd7189a50a12d612d56ed6391081e83.tar.gz |
fixed a silly typo
Diffstat (limited to 'lib/git/stats.py')
-rw-r--r-- | lib/git/stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |