Skip to content

Commit 505ee10

Browse files
committed
feat(vcs/git): cascade verbosity for cloning
Since the method signature already provides an argument for controlling verbosity, it is now passed down to the `update_submodules` callee. Implements: #13329
1 parent 8375116 commit 505ee10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/vcs/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def fetch_new(
331331
logger.info("Resolved %s to commit %s", url, rev_options.rev)
332332

333333
#: repo may contain submodules
334-
self.update_submodules(dest)
334+
self.update_submodules(dest, verbosity=verbosity)
335335

336336
def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None:
337337
self.run_command(

0 commit comments

Comments
 (0)