[oe-commits] Markus Lehtonen : devtool: remove some unused return values

git at git.openembedded.org git at git.openembedded.org
Thu Jun 18 08:16:44 UTC 2015


Module: openembedded-core.git
Branch: master
Commit: 30fd41bd06a61e9df47263d49119fb8e193cdf68
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=30fd41bd06a61e9df47263d49119fb8e193cdf68

Author: Markus Lehtonen <markus.lehtonen at linux.intel.com>
Date:   Wed May 27 17:40:49 2015 +0300

devtool: remove some unused return values

Signed-off-by: Markus Lehtonen <markus.lehtonen at linux.intel.com>

---

 scripts/devtool                 | 2 +-
 scripts/lib/devtool/standard.py | 3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/scripts/devtool b/scripts/devtool
index 0100eb8..fd4af98 100755
--- a/scripts/devtool
+++ b/scripts/devtool
@@ -157,7 +157,7 @@ def _enable_workspace_layer(workspacedir, config, basepath):
     bblayers_conf = os.path.join(basepath, 'conf', 'bblayers.conf')
     if not os.path.exists(bblayers_conf):
         logger.error('Unable to find bblayers.conf')
-        return -1
+        return
     _, added = bb.utils.edit_bblayers_conf(bblayers_conf, workspacedir, config.workspace_path)
     if added:
         logger.info('Enabling workspace layer in bblayers.conf')
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index fb3cc78..14912a9 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -417,9 +417,6 @@ def _check_preserve(config, recipename):
                     tf.write(line)
     os.rename(newfile, origfile)
 
-    return False
-
-
 def modify(args, config, basepath, workspace):
     """Entry point for the devtool 'modify' subcommand"""
     import bb



More information about the Openembedded-commits mailing list