mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-05 05:34:22 -07:00
Fix 'hg module fails with: AttributeError: 'AnsibleModule' object has no attribute 'parames''
This commit is contained in:
parent
c2572b0379
commit
740a33bcab
1 changed files with 8 additions and 8 deletions
|
@ -234,7 +234,7 @@ def main():
|
|||
revision = module.params['revision']
|
||||
force = module.params['force']
|
||||
purge = module.params['purge']
|
||||
hg_path = module.parames['executable'] or module.get_bin_path('hg', True)
|
||||
hg_path = module.params['executable'] or module.get_bin_path('hg', True)
|
||||
hgrc = os.path.join(dest, '.hg/hgrc')
|
||||
|
||||
# initial states
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue