mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-08 19:50:30 -07:00
[PR #8929/4700accb backport][stable-9] CmdRunner: missing parameter for get_best_parsable_locale() (#8930)
CmdRunner: missing parameter for get_best_parsable_locale() (#8929)
* CmdRunner: missing parameter for get_best_parsable_locale()
* add changelog frag
(cherry picked from commit 4700accbff
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
f0724c0975
commit
1ac7783c5c
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/8929-cmd_runner-bugfix.yml
Normal file
2
changelogs/fragments/8929-cmd_runner-bugfix.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- cmd_runner module utils - call to ``get_best_parsable_locales()`` was missing parameter (https://github.com/ansible-collections/community.general/pull/8929).
|
|
@ -239,7 +239,7 @@ class CmdRunner(object):
|
||||||
self.check_rc = check_rc
|
self.check_rc = check_rc
|
||||||
if force_lang == "auto":
|
if force_lang == "auto":
|
||||||
try:
|
try:
|
||||||
self.force_lang = get_best_parsable_locale()
|
self.force_lang = get_best_parsable_locale(module)
|
||||||
except RuntimeWarning:
|
except RuntimeWarning:
|
||||||
self.force_lang = "C"
|
self.force_lang = "C"
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue