condorcore-keyring/keyringctl
Morten Linderud 02e137e933
keyringctl: use python3 in shebang
Signed-off-by: Morten Linderud <morten@linderud.pw>
2022-06-08 15:42:08 +02:00

9 lines
144 B
Python
Executable File

#!/usr/bin/env python3
#
# SPDX-License-Identifier: GPL-3.0-or-later
from libkeyringctl.cli import main
if __name__ == "__main__":
main()