From 02587fba946684b8d3764f055714e67d9574e439 Mon Sep 17 00:00:00 2001 From: Sterfield Date: Sat, 3 Jan 2015 22:24:27 +0100 Subject: [PATCH] Missing import re I don't even know how it magically worked, but the fact is the code was correct, and ran OK without the import re. --- lib/ansible/modules/extras/system/locale_gen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/extras/system/locale_gen.py b/lib/ansible/modules/extras/system/locale_gen.py index 03d9690e8fe..70b83be88aa 100644 --- a/lib/ansible/modules/extras/system/locale_gen.py +++ b/lib/ansible/modules/extras/system/locale_gen.py @@ -4,6 +4,7 @@ import os import os.path from subprocess import Popen, PIPE, call +import re DOCUMENTATION = ''' ---