From 81127096cd00246188673af884adb1d99d9173f7 Mon Sep 17 00:00:00 2001 From: ldericher Date: Mon, 10 Aug 2020 16:15:10 +0200 Subject: [PATCH] Typos --- src/kiwi/runner.py | 2 +- src/kiwi/subcommands/show.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/kiwi/runner.py b/src/kiwi/runner.py index 981529a..b65d4f7 100644 --- a/src/kiwi/runner.py +++ b/src/kiwi/runner.py @@ -37,4 +37,4 @@ class Runner: if __name__ == 'kiwi.runner': - Runner().setup_all() + _ = Runner() diff --git a/src/kiwi/subcommands/show.py b/src/kiwi/subcommands/show.py index 1819d0d..6785485 100644 --- a/src/kiwi/subcommands/show.py +++ b/src/kiwi/subcommands/show.py @@ -1,5 +1,4 @@ from ..config import LoadedConfig -from ..core import Parser from ._utils import SubCommand @@ -7,8 +6,8 @@ from ._utils import SubCommand class ShowCommand(SubCommand): def __init__(self): super().__init__( - 'logs', - description="Show logs of a project" + 'show', + description="Show effective kiwi.yml" ) def run(self):