X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=lib%2Fscripts%2Flisterrors;h=473f7ff003d95ae3a6267fe2380b5272e5b81a2a;hb=2ee880ff21ae663630e2ef3a2baab4bb32cc42ad;hp=326702b3f376556f96820ae6bdd8188d2ace7e92;hpb=d246375c2c65154fccacac6a6159db3fa606263f;p=lyx.git diff --git a/lib/scripts/listerrors b/lib/scripts/listerrors index 326702b3f3..473f7ff003 100755 --- a/lib/scripts/listerrors +++ b/lib/scripts/listerrors @@ -1,17 +1,26 @@ -#!/usr/bin/python +#!/usr/bin/env python + +# file listerrors +# This file is part of LyX, the document processor. +# Licence details can be found in the file COPYING. + +# author Kayvan A. Sylvan + +# Full author contact details are available in file CREDITS. + """reformat noweb and compiler errors for LyX. Expects to read from stdin and output to stdout. """ __author__ = "Kayvan A. Sylvan " -__date__ = "$Date: 2002/03/25 23:29:30 $" -__version__ = "$Revision: 1.2 $" +__date__ = "$Date: 2003/10/13 09:50:10 $" +__version__ = "$Revision: 1.4 $" __credits__ = """Edmar Wienskoski Jr. original Literate support for LyX. Bernard Michael Hurley modifications to original listerrors.""" -__copyright__ = "Copyright 2002 - The LyX team." +__copyright__ = "Copyright 2002 - Kayvan A. Sylvan." import sys, string @@ -146,7 +155,7 @@ def xlc_try(line): write_error(line, "xlc", int(line[num_start : num_end])) retval = 1 return retval - + if __name__ == "__main__": main()