HEAD.
Browse files
app.py
CHANGED
|
@@ -75,7 +75,7 @@ def check_repo(repo_path, since, mincount, filter_=None):
|
|
| 75 |
bugfiles = Counter()
|
| 76 |
current_commit = 0
|
| 77 |
current_files = []
|
| 78 |
-
out = git.show('--stat', '--oneline', '--name-only', f"{commits[-1]}..")
|
| 79 |
|
| 80 |
is_bug = 0
|
| 81 |
for i, line in enumerate(out.split("\n")):
|
|
|
|
| 75 |
bugfiles = Counter()
|
| 76 |
current_commit = 0
|
| 77 |
current_files = []
|
| 78 |
+
out = git.show('--stat', '--oneline', '--name-only', f"{commits[-1]}..HEAD")
|
| 79 |
|
| 80 |
is_bug = 0
|
| 81 |
for i, line in enumerate(out.split("\n")):
|