diff options
author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2017-05-01 02:26:56 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-05-01 02:26:56 +0200 |
commit | 3e67e5c9928f8b1e1c5a63def88d53ed1fed12eb (patch) | |
tree | ed8167b908dc274da6635b3e192ea214b72ab0b1 /src/journal-remote | |
parent | build-sys: don't generate index.html with --disable-manpages (#5865) (diff) | |
download | systemd-3e67e5c9928f8b1e1c5a63def88d53ed1fed12eb.tar.xz systemd-3e67e5c9928f8b1e1c5a63def88d53ed1fed12eb.zip |
more portable python shebangs (#5816)
This is useful on systems like NixOS, where python3 is not in
/usr/bin/python3 as well as for people using alternative ways to
install python such as virtualenv/pyenv.
Diffstat (limited to 'src/journal-remote')
-rwxr-xr-x | src/journal-remote/log-generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal-remote/log-generator.py b/src/journal-remote/log-generator.py index 7b434b334e..c2f945bb47 100755 --- a/src/journal-remote/log-generator.py +++ b/src/journal-remote/log-generator.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import sys import argparse |