diff options
| -rwxr-xr-x | texall | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -884,8 +884,11 @@ def main(arguments): if opts.summary in [ "failures", "both" ] : if errors: print "The following problems occured:" + lasterr="" for f in errors: - print " %s"%f + if f != lasterr: + print " %s"%f + lasterr = f if errors: sys.exit(1) |
