remove non-ascii quotes from message string

Fixes https://github.com/ansible/ansible/pull/8564
reviewable/pr18780/r1
Toshio Kuratomi 10 years ago
parent 7a006c81bc
commit 2b192c7f8e

@ -159,7 +159,7 @@ def main():
# Ubuntu created its own system to manage locales.
ubuntuMode = True
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:
# We found the common way to manage locales.
ubuntuMode = False

Loading…
Cancel
Save