From 830b936c1d7e32561420e6461935eb0f2ec2e420 Mon Sep 17 00:00:00 2001 From: Andrea Righi Date: Mon, 5 Dec 2022 07:53:20 +0100 Subject: [PATCH] annotations: clarify error message with --import Signed-off-by: Andrea Righi --- annotations | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/annotations b/annotations index ff6b54e..97232b6 100755 --- a/annotations +++ b/annotations @@ -128,9 +128,9 @@ def do_export(args): def do_import(args): if args.arch is None: - arg_fail('error: --arch and --flavour are required with --import') + arg_fail('error: --arch is required with --import') if args.flavour is None: - arg_fail('error: --arch and --flavour are required with --import') + arg_fail('error: --flavour is required with --import') if args.config is not None: arg_fail('error: --config cannot be used with --import (try --update)') -- 2.31.1