DRTVWR-418: Fix a couple variable references in debugging output.

master
Nat Goodspeed 2016-12-07 09:44:55 -05:00
parent a4ba22fecc
commit e1482838fe
2 changed files with 2 additions and 2 deletions

View File

@ -306,7 +306,7 @@ if __name__ == "__main__":
# command-line parsing -- and anyway, for C++ integration tests, that's
# performed in TUT code rather than our own.
os.environ["LL_TEST_PORT"] = str(httpd.server_port)
debug("$LL_TEST_PORT = %s", port)
debug("$LL_TEST_PORT = %s", httpd.server_port)
if do_valgrind:
args = ["valgrind", "--log-file=./valgrind.log"] + args
path_search = True

View File

@ -163,5 +163,5 @@ if __name__ == "__main__":
# command-line parsing -- and anyway, for C++ integration tests, that's
# performed in TUT code rather than our own.
os.environ["PORT"] = str(httpd.server_port)
debug("$PORT = %s", port)
debug("$PORT = %s", httpd.server_port)
sys.exit(run(server_inst=httpd, *sys.argv[1:]))