From 026146a081b6a1fa99e399117c411fe3bcbba79b Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Tue, 14 Apr 2015 10:05:29 -0300 Subject: [PATCH] Pep8 fixes --- src/sugar3/activity/bundlebuilder.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sugar3/activity/bundlebuilder.py b/src/sugar3/activity/bundlebuilder.py index 23a1ad6a..bfea84e0 100644 --- a/src/sugar3/activity/bundlebuilder.py +++ b/src/sugar3/activity/bundlebuilder.py @@ -436,10 +436,10 @@ def start(): help="verbosity for the unit tests") dist_parser = subparsers.add_parser("dist_xo", - help="Create a xo bundle package") - dist_parser.add_argument("--no-fail", dest="no_fail", action="store_true", - default=False, - help="continue past failure when building xo file") + help="Create a xo bundle package") + dist_parser.add_argument( + "--no-fail", dest="no_fail", action="store_true", default=False, + help="continue past failure when building xo file") subparsers.add_parser("dist_source", help="Create a tar source package") subparsers.add_parser("build", help="Build generated files")