Skip to content
Snippets Groups Projects
Commit e1482838 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

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

parent a4ba22fe
No related branches found
No related tags found
No related merge requests found
......@@ -306,7 +306,7 @@ def handle_error(self, request, client_address):
# 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
......
......@@ -163,5 +163,5 @@ class Server(HTTPServer):
# 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:]))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment