Do like the other Python scripts and use the more portable #!/usr/bin/env python instead of #!/usr/bin/python as Python isn't always installed there, especially on non-Linux systems. --- lib/scripts/listerrors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/scripts/listerrors b/lib/scripts/listerrors index e9b0da9..473f7ff 100755 --- a/lib/scripts/listerrors +++ b/lib/scripts/listerrors @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # file listerrors # This file is part of LyX, the document processor. -- 1.8.5.2
