From: Markus Lehtonen Date: Mon, 11 May 2015 13:17:07 +0000 (+0300) Subject: devtool: deploy plugin: fix bad indentation X-Git-Tag: 2015-10~1833 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6866b3027babcc390130f0cba4990c0f769cdb6a;p=openembedded-core.git devtool: deploy plugin: fix bad indentation Signed-off-by: Markus Lehtonen --- 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))