mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-03 04:34:24 -07:00
Fix Hg.__init__(...) reading value from self.hg_path
This commit is contained in:
parent
740a33bcab
commit
ce799b9e0e
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ class Hg(object):
|
||||||
self.dest = dest
|
self.dest = dest
|
||||||
self.repo = repo
|
self.repo = repo
|
||||||
self.revision = revision
|
self.revision = revision
|
||||||
self.hg_path = self.hg_path
|
self.hg_path = hg_path
|
||||||
|
|
||||||
def _command(self, args_list):
|
def _command(self, args_list):
|
||||||
(rc, out, err) = self.module.run_command([self.hg_path] + args_list)
|
(rc, out, err) = self.module.run_command([self.hg_path] + args_list)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue