xtensa-build-zephyr.py: fix two minor pylint f-string warnings

Fix two W1309 f-string-without-interpolation warnings

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2022-08-18 07:00:14 -07:00 committed by Liam Girdwood
parent 3c6dcdb574
commit b94a5fbc54
1 changed files with 2 additions and 2 deletions

View File

@ -234,10 +234,10 @@ This should be used with programmatic script invocations (eg. Continuous Integra
if args.fw_naming == 'AVS':
if not args.use_platform_subdir:
args.use_platform_subdir=True
warnings.warn(f"The option '--fw-naming AVS' has to be used with '--use-platform-subdir'. Enable '--use-platform-subdir' automatically.")
warnings.warn("The option '--fw-naming AVS' has to be used with '--use-platform-subdir'. Enable '--use-platform-subdir' automatically.")
if args.ipc != "IPC4":
args.ipc="IPC4"
warnings.warn(f"The option '--fw-naming AVS' has to be used with '-i IPC4'. Enable '-i IPC4' automatically.")
warnings.warn("The option '--fw-naming AVS' has to be used with '-i IPC4'. Enable '-i IPC4' automatically.")
def execute_command(*run_args, **run_kwargs):