diff options
author | Dmitry V. Levin <ldv@strace.io> | 2024-04-27 10:00:00 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-04-27 12:11:13 +0200 |
commit | c309b9e9c3e56a89d0f11ae40f5c088ac5cbccee (patch) | |
tree | 92d118874a2e3cbc01a54e31a3ac0932e5734945 /src/ukify/ukify.py | |
parent | Fix spelling errors found by Lintian (diff) | |
download | systemd-c309b9e9c3e56a89d0f11ae40f5c088ac5cbccee.tar.xz systemd-c309b9e9c3e56a89d0f11ae40f5c088ac5cbccee.zip |
treewide: fix a few typos in NEWS, docs, comments, and log messages
Diffstat (limited to 'src/ukify/ukify.py')
-rwxr-xr-x | src/ukify/ukify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index a21fe48437..f1db9ba578 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -1646,7 +1646,7 @@ def finalize_options(opts): opts.verb = 'build' # Check that --pcr-public-key=, --pcr-private-key=, and --phases= - # have either the same number of arguments are are not specified at all. + # have either the same number of arguments or are not specified at all. n_pcr_pub = None if opts.pcr_public_keys is None else len(opts.pcr_public_keys) n_pcr_priv = None if opts.pcr_private_keys is None else len(opts.pcr_private_keys) n_phase_path_groups = None if opts.phase_path_groups is None else len(opts.phase_path_groups) |