From: João Henrique Ferreira de Freitas Date: Wed, 4 Jun 2014 01:28:02 +0000 (-0300) Subject: wic: default plugin type directory should be added only once X-Git-Tag: 2015-4~2619 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ba88329115a3d6f964febcbf554af8391e1b84a1;p=openembedded-core.git wic: default plugin type directory should be added only once Fix 'for' statement identention so plugin type directory will be added only once in layers_dirs list. No functional changes. Signed-off-by: João Henrique Ferreira de Freitas Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/mic/plugin.py b/scripts/lib/mic/plugin.py index bec33d6164..dec0e5bf84 100644 --- a/scripts/lib/mic/plugin.py +++ b/scripts/lib/mic/plugin.py @@ -57,8 +57,8 @@ class PluginMgr(object): path = os.path.join(layer_path, SCRIPTS_PLUGIN_DIR, ptype) layer_dirs.append(path) - path = os.path.join(dl, ptype) - layer_dirs.append(path) + path = os.path.join(dl, ptype) + layer_dirs.append(path) return layer_dirs