|
|
|
|
|
|
409
|
self.authors[author] = { 'lines_added' : 0, 'lines_removed' : 0 }
|
409
|
self.authors[author] = { 'lines_added' : 0, 'lines_removed' : 0 }
|
|
410
|
self.authors[author]['lines_added'] = self.authors[author].get('lines_added', 0) + inserted
|
410
|
self.authors[author]['lines_added'] = self.authors[author].get('lines_added', 0) + inserted
|
|
411
|
self.authors[author]['lines_removed'] = self.authors[author].get('lines_removed', 0) + deleted
|
411
|
self.authors[author]['lines_removed'] = self.authors[author].get('lines_removed', 0) + deleted
|
|
|
|
412
|
+ files, inserted, deleted = 0, 0, 0
|
|
412
|
except ValueError:
|
413
|
except ValueError:
|
|
413
|
print 'Warning: unexpected line "%s"' % line
|
414
|
print 'Warning: unexpected line "%s"' % line
|
|
414
|
else:
|
415
|
else:
|