Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gitstats
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def getkeyssortedbyvaluekey(d, key):
return [el[1] for el in sorted([(d[el][key], el) for el in list(d.keys())])]

def getstatsummarycounts(line):
numbers = re.findall('\d+', line)
numbers = re.findall(r'\d+', line)
if len(numbers) == 1:
# neither insertions nor deletions: may probably only happen for "0 files changed"
numbers.append(0);
Expand Down Expand Up @@ -322,7 +322,7 @@ class GitDataCollector(DataCollector):
continue
prev = tag
for line in output.split('\n'):
parts = re.split('\s+', line, 2)
parts = re.split(r'\s+', line, 2)
commits = int(parts[1])
author = parts[2]
self.tags[tag]['commits'] += commits
Expand Down Expand Up @@ -485,7 +485,7 @@ class GitDataCollector(DataCollector):
for line in lines:
if len(line) == 0:
continue
parts = re.split('\s+', line, 4)
parts = re.split(r'\s+', line, 4)
if parts[0] == '160000' and parts[3] == '-':
# skip submodules
continue
Expand Down