From: Zbigniew Jędrzejewski-Szmek Date: Fri, 25 Jul 2025 10:06:14 +0000 (+0200) Subject: man: consistently use #!/usr/bin/python X-Git-Tag: v258-rc2~86^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e371ebb12a815189ef7644785cc02d727c8aad9;p=thirdparty%2Fsystemd.git 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. --- 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.