From 0e371ebb12a815189ef7644785cc02d727c8aad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 25 Jul 2025 12:06:14 +0200 Subject: [PATCH] man: consistently use #!/usr/bin/python Some files were using that, others weren't. Since those are user-facing docs, we should use the nice clean form, not the workaround for strange systems that we use in other places. --- man/90-rearrange-path.py | 2 +- man/notify-selfcontained-example.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/man/90-rearrange-path.py b/man/90-rearrange-path.py index 0620195157e..b5b6294754c 100755 --- a/man/90-rearrange-path.py +++ b/man/90-rearrange-path.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python # SPDX-License-Identifier: MIT-0 """ diff --git a/man/notify-selfcontained-example.py b/man/notify-selfcontained-example.py index a1efb419ced..6a1e25b99b2 100644 --- a/man/notify-selfcontained-example.py +++ b/man/notify-selfcontained-example.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python # SPDX-License-Identifier: MIT-0 # # Implement the systemd notify protocol without external dependencies.