CmdRunner: missing parameter for get_best_parsable_locale() (#8929)
* CmdRunner: missing parameter for get_best_parsable_locale() * add changelog fragpull/8937/head
parent
d356e255e0
commit
4700accbff
|
@ -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
|
||||
if force_lang == "auto":
|
||||
try:
|
||||
self.force_lang = get_best_parsable_locale()
|
||||
self.force_lang = get_best_parsable_locale(module)
|
||||
except RuntimeWarning:
|
||||
self.force_lang = "C"
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue