Skip to content

Commit

Permalink
filter-repo: fix blob count when analyzing
Browse files Browse the repository at this point in the history
Reported-by: Li Linchao
Signed-off-by: Elijah Newren <[email protected]>
  • Loading branch information
newren committed Nov 12, 2021
1 parent 240ef0b commit 0cd8a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-filter-repo
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ class GitUtils(object):
if objtype == b'blob':
unpacked_size[sha] = objsize
packed_size[sha] = objdisksize
num_blobs += 1
num_blobs += 1
if not quiet:
blob_size_progress.show(processed_blobs_msg % num_blobs)
cf.wait()
Expand Down

0 comments on commit 0cd8a1f

Please sign in to comment.