Skip to content
Snippets Groups Projects
Commit 1610f474b0dc authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

Replace call to `self.hg` with `self.util_hg` in `_matchrevset`

parent 8a5dcb1391a2
No related branches found
No related tags found
No related merge requests found
......@@ -454,9 +454,11 @@
# assuming it is new enough.
env = self.environ.copy()
env.pop('HGMODULEPOLICY', None)
return self.hg('log', '--config', 'experimental.evolution=all',
'--cwd', self.project_dir, '--template', '{node|short}',
'-r', '.', env=env).strip()
return self.util_hg(
'log', '--config', 'experimental.evolution=all',
'--cwd', self.project_dir, '--template', '{node|short}',
'-r', '.', env=env
).strip()
def check_output(self, *args, **kwargs):
"""Helper to run commands
......
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