remove non-ascii quotes from message string
Fixes https://github.com/ansible/ansible/pull/8564
This commit is contained in:
parent
dce3597782
commit
77041aec47
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ def main():
|
||||||
# Ubuntu created its own system to manage locales.
|
# Ubuntu created its own system to manage locales.
|
||||||
ubuntuMode = True
|
ubuntuMode = True
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg="/etc/locale.gen and /var/lib/locales/supported.d/local are missing. Is the package “locales” installed?")
|
module.fail_json(msg="/etc/locale.gen and /var/lib/locales/supported.d/local are missing. Is the package \"locales\" installed?")
|
||||||
else:
|
else:
|
||||||
# We found the common way to manage locales.
|
# We found the common way to manage locales.
|
||||||
ubuntuMode = False
|
ubuntuMode = False
|
||||||
|
|
Loading…
Reference in a new issue