From 799f4b925b3586ed257c771e60fe40a7871bfa59 Mon Sep 17 00:00:00 2001 From: Alexey Min Date: Fri, 4 Dec 2020 17:11:51 +0300 Subject: [PATCH] pmbootstrap status: fix typo Closes #1991 --- pmb/helpers/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/helpers/status.py b/pmb/helpers/status.py index b72be78a..d7adbda5 100644 --- a/pmb/helpers/status.py +++ b/pmb/helpers/status.py @@ -121,7 +121,7 @@ def print_checks_chroots_outdated(args, details): :returns: list of unresolved checklist items """ if pmb.config.workdir.chroots_outdated(args): logging.info("[NOK] Chroots not zapped recently") - return ["Run 'pmbootststrap zap' to delete possibly outdated chroots"] + return ["Run 'pmbootstrap zap' to delete possibly outdated chroots"] elif details: logging.info("[OK ] Chroots zapped recently (or non-existing)") return []