From 74931b9b93d421b0083fa301dcf7bdbdfe9ac568 Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Wed, 18 Nov 2020 19:59:33 +0100 Subject: [PATCH] install: fix CREATE DEVICE ROOTFS message (MR 1991) This converts the 1st step message to use a format string as well and fixes two small typos in the 2nd step message. --- pmb/install/_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index df8b881c..8d3e7f53 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -668,11 +668,11 @@ def install(args): steps = 4 # Install required programs in native chroot - logging.info("*** (1/{}) PREPARE NATIVE CHROOT ***".format(steps)) + logging.info(f"*** (1/{steps}) PREPARE NATIVE CHROOT ***") pmb.chroot.apk.install(args, pmb.config.install_native_packages, build=False) - logging.info(f'*** (2/{steps} CREATE DEVICE ROOTFS("{args.device}") ***') + logging.info(f'*** (2/{steps}) CREATE DEVICE ROOTFS ("{args.device}") ***') # Create user before installing packages, so post-install scripts of # pmaports can figure out the username (legacy reasons: pmaports#820)