[bitbake-devel] [PATCH] cooker: Get rid of duplicate 'import re'

Namhyung Kim namhyung at gmail.com
Wed Jul 30 02:17:20 UTC 2014


The re module was imported at the top, no need to do it again.

Signed-off-by: Namhyung Kim <namhyung at gmail.com>
---
 lib/bb/cooker.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index ecb3f9b..2c7788e 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")
-- 
2.0.0




More information about the bitbake-devel mailing list