From 5eff73f04ee4823107a54a77b61e9c61abda434a Mon Sep 17 00:00:00 2001 From: "Soren I. Bjornstad" Date: Mon, 20 Sep 2021 12:13:57 -0500 Subject: [PATCH] fix bad indentation --- tzk/__main__.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tzk/__main__.py b/tzk/__main__.py index ec93aba..971fff0 100644 --- a/tzk/__main__.py +++ b/tzk/__main__.py @@ -234,15 +234,15 @@ class BuildCommand(CliCommand): failed = True print(f"tzk: ERROR: {str(e)}") print(f"tzk: Build of product '{args.product}' failed on step {idx}, " - f"backed by builder '{step.__name__}'. ") + f"backed by builder '{step.__name__}'. ") print(f"tzk: Add '--skip-builder {step.__name__}' if you'd like " - f"to skip this step.") + f"to skip this step.") except Exception: failed = True print(f"tzk: Build of product '{args.product}' failed on step {idx}: " - f"unhandled exception. " - f"The original error follows:") + f"unhandled exception. " + f"The original error follows:") traceback.print_exc() finally: @@ -273,9 +273,9 @@ def chdir_to_wiki(): if not os.path.exists("tiddlywiki.info"): fail(f"After changing directory into {cm().wiki_folder} per your config file: " - f"Expected a 'tiddlywiki.info' file in {os.getcwd()}. " - f"Please check that your wiki is initialized " - f"and you specified the correct wiki_folder_name.") + f"Expected a 'tiddlywiki.info' file in {os.getcwd()}. " + f"Please check that your wiki is initialized " + f"and you specified the correct wiki_folder_name.") def launch():