If python3 fails, make it clear that this isn't fatal

This commit is contained in:
Gilles Peskine 2019-11-26 13:30:16 +01:00
parent df78e496b7
commit 987e271b16

View File

@ -21,7 +21,7 @@
my $py = $0;
$py =~ s/\.pl$/.py/ or die "Unable to determine the name of the Python script";
exec 'python3', $py, @ARGV;
print STDERR "$0: python3: $!\n";
print STDERR "$0: python3: $!. Trying python instead.\n";
exec 'python', $py, @ARGV;
print STDERR "$0: python: $!\n";
exit 127;