From a4da21d92f461e85e90a866f4a1da34ba1c9551a Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Wed, 17 Jun 2015 14:47:47 +0300 Subject: wic: code cleanup: superfluous-parens Removed unncecessary parents after 'if' 'del' and 'print' keywords. Fixed pyling warning: Unnecessary parens after 'xxx' keyword (From OE-Core rev: a64604d11f75973b4c2347fa2669da9889e44013) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/lib/wic/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/lib/wic/plugin.py') diff --git a/scripts/lib/wic/plugin.py b/scripts/lib/wic/plugin.py index 9872d20985..fff02c063b 100644 --- a/scripts/lib/wic/plugin.py +++ b/scripts/lib/wic/plugin.py @@ -103,7 +103,7 @@ class PluginMgr(object): % (os.path.basename(pdir), mod, err) msger.warning(msg) - del(sys.path[0]) + del sys.path[0] def get_plugins(self, ptype): """ the return value is dict of name:class pairs """ -- cgit v1.2.3-54-g00ecf