From 4fc45bf098f768ea662128cbb0f4484e8940a008 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Thu, 22 Sep 2022 07:01:31 +0200 Subject: [PATCH] packages/cli: cmd_clean(): reword output --- packages/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli.py b/packages/cli.py index bd5aa16..287ae29 100644 --- a/packages/cli.py +++ b/packages/cli.py @@ -169,7 +169,7 @@ def cmd_clean(what: Iterable[str] = ['all'], force: bool = False, noop: bool = F dir_lines = '\n'.join(dirs) verb = 'Would remove' if noop else 'Removing' - logging.info(verb + ' directories:\n' + dir_lines) + logging.info(verb + ':\n' + dir_lines) if not (noop or force): if not click.confirm("Really remove all of these?", default=True):