From 684d37fa03ee65326006017e5d7314b76e87c44c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B5=85=E9=A6=99=E3=82=B8=E3=83=A5=E3=83=B3?= <55659353+JunASAKA@users.noreply.github.com> Date: Wed, 25 Jan 2023 22:32:37 +0800 Subject: [PATCH] error-message: fix the incorrect output of low nrfutil version. (#581) --- deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.py b/deploy.py index 0e47a30..35bb0fb 100755 --- a/deploy.py +++ b/deploy.py @@ -745,7 +745,7 @@ class OpenSKInstaller: nrfutil_version = __import__("nordicsemi.version").version.NRFUTIL_VERSION if not nrfutil_version.startswith("6."): fatal(("You need to install nrfutil python3 package v6.0 or above. " - "Found: {nrfutil_version}")) + f"Found: v{nrfutil_version}")) if not SUPPORTED_BOARDS[self.args.board].nordic_dfu: fatal("This board doesn't support flashing over DFU.")