Skip to content

Commit 56ae34e

Browse files
committed
Update base.py
1 parent 660bdca commit 56ae34e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/objects/submodule/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ def remove(self, module=True, force=False, configuration=True, dry_run=False):
657657
num_branches_with_new_commits = 0
658658
rrefs = remote.refs
659659
for rref in rrefs:
660-
num_branches_with_new_commits = len(mod.git.cherry(rref)) != 0
660+
num_branches_with_new_commits += len(mod.git.cherry(rref)) != 0
661661
# END for each remote ref
662662
# not a single remote branch contained all our commits
663663
if num_branches_with_new_commits == len(rrefs):

0 commit comments

Comments
 (0)