From c684bdf3b6d471bb881071ece1755b5094c8cd86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20S=C3=B8lberg?= Date: Tue, 26 Sep 2023 20:04:06 +0200 Subject: [PATCH] board: remove extra space in generic cortex-m warning message (#1625) --- pyocd/board/board.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyocd/board/board.py b/pyocd/board/board.py index 9754f3b48..20c29b843 100644 --- a/pyocd/board/board.py +++ b/pyocd/board/board.py @@ -1,6 +1,7 @@ # pyOCD debugger # Copyright (c) 2006-2013,2018 Arm Limited # Copyright (c) 2021-2022 Chris Reed +# Copyright (c) 2023 Benjamin Sølberg # SPDX-License-Identifier: Apache-2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -77,7 +78,7 @@ def __init__(self, if session.options.get('warning.cortex_m_default'): LOG.warning("Generic 'cortex_m' target type is selected by default; is this " "intentional? You will be able to debug most devices, but not program " - " flash. To set the target type use the '--target' argument or " + "flash. To set the target type use the '--target' argument or " "'target_override' option. Use 'pyocd list --targets' to see available " "targets types.")