Skip to content

Commit 5a9cc83

Browse files
S. Guliaevdevsagul
authored andcommitted
fix typo
1 parent e84ffb5 commit 5a9cc83

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
File renamed without changes.

src/pip/_internal/vcs/bazaar.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,15 @@ def fetch_new(
4848
elif verbosity == 1:
4949
flags = ()
5050
else:
51+
<<<<<<< HEAD
5152
flags = ("-{'v'*verbosity}",)
5253
cmd_args = make_command(
5354
"checkout", "--lightweight", *flags, rev_options.to_args(), url, dest
5455
)
56+
=======
57+
flags = (f"-{'v'*verbosity}",)
58+
cmd_args = make_command("branch", *flags, rev_options.to_args(), url, dest)
59+
>>>>>>> 57d0a77e3 (fix typo)
5560
self.run_command(cmd_args)
5661

5762
def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None:

0 commit comments

Comments
 (0)