From d1174cc8b729aa00b9587b675aee788e0fd39035 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Fri, 3 Jun 2016 06:25:29 -0700 Subject: [PATCH] Only import get_exception once in locale_gen.py --- system/locale_gen.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/system/locale_gen.py b/system/locale_gen.py index cde724a3ad7..9aa732f57c3 100644 --- a/system/locale_gen.py +++ b/system/locale_gen.py @@ -15,11 +15,6 @@ # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . -import os -import os.path -from subprocess import Popen, PIPE, call -import re -from ansible.module_utils.pycompat24 import get_exception DOCUMENTATION = ''' --- @@ -49,6 +44,14 @@ EXAMPLES = ''' - locale_gen: name=de_CH.UTF-8 state=present ''' +import os +import os.path +from subprocess import Popen, PIPE, call +import re + +from ansible.module_utils.basic import * +from ansible.module_utils.pycompat24 import get_exception + LOCALE_NORMALIZATION = { ".utf8": ".UTF-8", ".eucjp": ".EUC-JP", @@ -66,9 +69,6 @@ LOCALE_NORMALIZATION = { # location module specific support methods. # -from ansible.module_utils.basic import * -from ansible.module_utils.pycompat24 import get_exception - def is_available(name, ubuntuMode): """Check if the given locale is available on the system. This is done by checking either :