summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/deploy.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2015-05-11 16:17:07 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-16 22:31:51 +0100
commit18114bb8a6074368922351b6cd229f21385d2901 (patch)
tree2f77bc61ce0de53f3a9197eac68f75d2e177ee9d /scripts/lib/devtool/deploy.py
parent7883af3097e043dd5b0f2c6f5f37189d9f70549e (diff)
downloadpoky-18114bb8a6074368922351b6cd229f21385d2901.tar.gz
devtool: deploy plugin: fix bad indentation
(From OE-Core rev: 6866b3027babcc390130f0cba4990c0f769cdb6a) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/devtool/deploy.py')
-rw-r--r--scripts/lib/devtool/deploy.py4
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):
93 """Entry point for the devtool 'undeploy' subcommand""" 93 """Entry point for the devtool 'undeploy' subcommand"""
94 deploy_file = os.path.join(basepath, 'target_deploy', args.target, args.recipename + '.list') 94 deploy_file = os.path.join(basepath, 'target_deploy', args.target, args.recipename + '.list')
95 if not os.path.exists(deploy_file): 95 if not os.path.exists(deploy_file):
96 logger.error('%s has not been deployed' % args.recipename) 96 logger.error('%s has not been deployed' % args.recipename)
97 return -1 97 return -1
98 98
99 if args.dry_run: 99 if args.dry_run:
100 print('Previously deployed files to be un-deployed for %s on target %s:' % (args.recipename, args.target)) 100 print('Previously deployed files to be un-deployed for %s on target %s:' % (args.recipename, args.target))