From: Andrea Righi Date: Mon, 5 Dec 2022 06:53:20 +0000 (+0100) Subject: annotations: clarify error message with --import X-Git-Tag: v0.1~52 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=830b936c1d7e32561420e6461935eb0f2ec2e420;p=annotations.git annotations: clarify error message with --import Signed-off-by: Andrea Righi --- 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)')