diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-10-16 17:44:38 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-10-16 17:44:41 +0200 |
commit | e776ab8e210f335deab1fa3db490bd2ab5b9e5fd (patch) | |
tree | 192ae9167cebbbbd0b42c18105fe4f4850ed9af2 /src/ukify/ukify.py | |
parent | Merge pull request #34381 from DaanDeMeyer/extension-submounts (diff) | |
download | systemd-e776ab8e210f335deab1fa3db490bd2ab5b9e5fd.tar.xz systemd-e776ab8e210f335deab1fa3db490bd2ab5b9e5fd.zip |
ukify: fix typo
Follow-up for 02eabaffe98c9a3b5dec1c4837968a4d3e2ff7db.
Diffstat (limited to '')
-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 f0d7ee60b7..02220dd983 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -1478,7 +1478,7 @@ class SignToolAction(argparse.Action): elif values == 'pesign': setattr(namespace, 'signtool', PeSign) else: - raise ValueError(f"Unknon signtool '{values}' (this is unreachable)") + raise ValueError(f"Unknown signtool '{values}' (this is unreachable)") VERBS = ('build', 'genkey', 'inspect') |