# HG changeset patch # User Henry S. Thompson # Date 1727369652 -3600 # Node ID a4538bdfa92a97261943e09f7335e84093bc3530 # Parent 567ba6010658cf0f04f636a890eb915ab417c9f8 fix error message diff -r 567ba6010658 -r a4538bdfa92a lib/python/cc/ix.py --- a/lib/python/cc/ix.py Thu Sep 26 12:38:34 2024 +0100 +++ b/lib/python/cc/ix.py Thu Sep 26 17:54:12 2024 +0100 @@ -35,8 +35,11 @@ import traceback traceback.print_exc(file=sys.stderr) else: - print("Process fail: %s, input line:\n %s"%(e,l), - file=sys.stderr,end='') + print("Process fail: %s, input:\n length=%s, offset=%s, file=%s"%(e, + length, + offset, + filename), + file=sys.stderr) exit(3) def process0(options,buf,filename,offset,length,whole):