diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2015-05-11 16:17:07 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-15 22:21:54 +0100 |
commit | 6866b3027babcc390130f0cba4990c0f769cdb6a (patch) | |
tree | 7231b0cb2d35244dc1727b6af0bbcd3663744b11 /scripts | |
parent | 07b2e731a378c56852e2715f6c001097b81abe46 (diff) | |
download | openembedded-core-6866b3027babcc390130f0cba4990c0f769cdb6a.tar.gz openembedded-core-6866b3027babcc390130f0cba4990c0f769cdb6a.tar.bz2 openembedded-core-6866b3027babcc390130f0cba4990c0f769cdb6a.zip |
devtool: deploy plugin: fix bad indentation
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/devtool/deploy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/deploy.py b/scripts/lib/devtool/deploy.py index 3c7abfa8a7..078c74b45d 100644 --- a/scripts/lib/devtool/deploy.py +++ b/scripts/lib/devtool/deploy.py @@ -93,8 +93,8 @@ def undeploy(args, config, basepath, workspace): """Entry point for the devtool 'undeploy' subcommand""" deploy_file = os.path.join(basepath, 'target_deploy', args.target, args.recipename + '.list') if not os.path.exists(deploy_file): - logger.error('%s has not been deployed' % args.recipename) - return -1 + logger.error('%s has not been deployed' % args.recipename) + return -1 if args.dry_run: print('Previously deployed files to be un-deployed for %s on target %s:' % (args.recipename, args.target)) |