style 'tzk' as lowercase

This commit is contained in:
Soren I. Bjornstad 2021-09-20 12:16:38 -05:00
parent 5eff73f04e
commit 465c1c0665
3 changed files with 6 additions and 6 deletions

View File

@ -66,7 +66,7 @@ class CommitCommand(CliCommand):
current_branch = git.read("rev-parse", "--abbrev-ref", "HEAD")
if current_branch != cm().commit_require_branch:
fail(f"You are on the '{current_branch}' branch, "
f"but your TZK configuration requires you to be on the "
f"but your tzk configuration requires you to be on the "
f"'{cm().commit_require_branch}' branch to commit.")
git.exec("add", "-A")
@ -119,7 +119,7 @@ class ListenCommand(CliCommand):
class InitCommand(CliCommand):
cmd = "init"
help = "Set up a new TZK directory."
help = "Set up a new tzk directory."
@classmethod
def setup_arguments(cls, parser: argparse.ArgumentParser) -> None:
@ -147,7 +147,7 @@ class InitCommand(CliCommand):
if os.path.exists("package.json"):
fail("A 'package.json' file already exists in the current directory. "
"Perhaps you've already initialized a TZK repository here?")
"Perhaps you've already initialized a tzk repository here?")
def execute(self, args: argparse.Namespace) -> None:
self._precheck()
@ -172,7 +172,7 @@ class BuildCommand(CliCommand):
cmd = "build"
help = ("Build another wiki or derivative product, "
"such as a public version of the wiki, "
"from this TZK repository.")
"from this tzk repository.")
@classmethod
def setup_arguments(cls, parser: argparse.ArgumentParser) -> None:

View File

@ -34,7 +34,7 @@ def tzk_builder(func):
initially passed wrapped up in it. Calling that lambda has the effect
of executing the builder.
We use this in TZK to allow the user to use function calls in her config
We use this in tzk to allow the user to use function calls in her config
to define the build steps, while not requiring her to write a bunch of
ugly and confusing lambda:'s in the config. The functions that will be called
are prepared during the config and executed later.

View File

@ -1,5 +1,5 @@
"""
config.py - read and manage the TZK config file
config.py - read and manage the tzk config file
"""
import datetime
import functools