Skip to content

Commit 0cd8a1f

Browse files
committed
filter-repo: fix blob count when analyzing
Reported-by: Li Linchao Signed-off-by: Elijah Newren <[email protected]>
1 parent 240ef0b commit 0cd8a1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-filter-repo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ class GitUtils(object):
15621562
if objtype == b'blob':
15631563
unpacked_size[sha] = objsize
15641564
packed_size[sha] = objdisksize
1565-
num_blobs += 1
1565+
num_blobs += 1
15661566
if not quiet:
15671567
blob_size_progress.show(processed_blobs_msg % num_blobs)
15681568
cf.wait()

0 commit comments

Comments
 (0)