]> code.ossystems Code Review - openembedded-core.git/commitdiff
devtool: deploy plugin: fix bad indentation
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Mon, 11 May 2015 13:17:07 +0000 (16:17 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 15 May 2015 21:21:54 +0000 (22:21 +0100)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
scripts/lib/devtool/deploy.py

index 3c7abfa8a7a5f6429358222a8beb0aba90bcef49..078c74b45d486aab40087d50c24c9d852ef8fb37 100644 (file)
@@ -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))