Index: lnt/server/ui/app.py =================================================================== --- lnt/server/ui/app.py +++ lnt/server/ui/app.py @@ -265,7 +265,7 @@ rotating.setLevel(logging.DEBUG) self.logger.addHandler(rotating) except (OSError, IOError) as e: - print("Error making log file", \ + print("Error making log file", LOG_FILENAME, str(e), file=sys.stderr) print("Will not log to file.", file=sys.stderr) else: Index: lnt/tests/nt.py =================================================================== --- lnt/tests/nt.py +++ lnt/tests/nt.py @@ -700,7 +700,7 @@ timestamp(), config.build_threads), file=sys.stderr) res = execute_command(test_log, basedir, args, report_dir) if res != 0: - print("Failure while running make build! " \ + print("Failure while running make build! " "See log: %s" % test_log.name, file=sys.stderr) # Then 'make report'. @@ -720,7 +720,7 @@ res = execute_command(test_log, basedir, args, report_dir) if res != 0: - print("Failure while running nightly tests! "\ + print("Failure while running nightly tests! " "See log: %s" % test_log.name, file=sys.stderr) @@ -1715,7 +1715,7 @@ reports = [] for i in range(opts.multisample): - print("%s: (multisample) running iteration %d" %\ + print("%s: (multisample) running iteration %d" % (timestamp(), i), file=sys.stderr) report = run_test(opts.label, i, config) reports.append(report)