From c29c2370635075949c75937c237602600f4f10dc Mon Sep 17 00:00:00 2001 From: Namhyung Kim Date: Wed, 30 Jul 2014 11:17:20 +0900 Subject: cooker: Get rid of duplicate 'import re' The re module was imported at the top, no need to do it again. Signed-off-by: Namhyung Kim Signed-off-by: Richard Purdie --- lib/bb/cooker.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index ecb3f9b68..2c7788ea0 100644 --- a/lib/bb/cooker.py +++ b/lib/bb/cooker.py @@ -818,7 +818,6 @@ class BBCooker: or to find all machine configuration files one could call: findFilesMatchingInDir(self, 'conf/machines', 'conf') """ - import re matches = [] p = re.compile(re.escape(filepattern)) @@ -1228,7 +1227,6 @@ class BBCooker: ''' Create a new image with a "require"/"inherit" base_image statement ''' - import re if timestamp: image_name = os.path.splitext(image)[0] timestr = time.strftime("-%Y%m%d-%H%M%S") -- cgit 1.2.3-korg