Skip to content
Snippets Groups Projects
Commit fe1db153 authored by Philippe Pepiot's avatar Philippe Pepiot
Browse files

Re-indent _prepare_cmd()

parent 26e13d59
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,7 @@
def _prepare_cmd(self, command, *args):
cmd = [
self.hgpath,
"--cwd", self.repo_path,
command,
self.hgpath,
"--cwd", self.repo_path,
command,
] + list(args)
......@@ -220,5 +220,4 @@
] + list(args)
return cmd
def _single_execute(self, cmd):
......@@ -246,8 +245,8 @@
def _prepare_cmd(self, command, *args):
cmd = [
self.hgpath,
"--cwd", self.repo_path,
"--traceback",
command,
self.hgpath,
"--cwd", self.repo_path,
"--traceback",
command,
] + list(args)
......@@ -253,5 +252,4 @@
] + list(args)
return cmd
def _single_execute(self, cmd, expected_return_code=0):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment