From c6990d9e92e45e8df54d86a4cc586a0ce026609e Mon Sep 17 00:00:00 2001 From: Martijn Braam Date: Tue, 17 Oct 2017 18:24:34 +0200 Subject: [PATCH] Fixed username in flasher output (#784) --- pmb/flasher/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/flasher/frontend.py b/pmb/flasher/frontend.py index 6d3cd82a..2f5558dc 100644 --- a/pmb/flasher/frontend.py +++ b/pmb/flasher/frontend.py @@ -48,7 +48,7 @@ def kernel(args): logging.info("You will get an IP automatically assigned to your " "USB interface shortly.") logging.info("Then you can connect to your device using ssh after pmOS has booted:") - logging.info("ssh user@" + pmb.config.default_ip) + logging.info("ssh {}@{}".format(args.user, pmb.config.default_ip)) logging.info("NOTE: If you enabled full disk encryption, you should make sure that" " osk-sdl has been properly configured for your device")