From 2f370374797638c3d4697a8cfec99050874d5e2f Mon Sep 17 00:00:00 2001 From: Riccardo Gagliarducci Date: Fri, 22 Jul 2022 17:38:55 +0200 Subject: Extra brackets removed Removed some extra brackets: the code is clear but this allows the copy paste of the code to work :) Thank you, Riccardo --- docs/user-guides/debugging-techniques.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user-guides/debugging-techniques.rst b/docs/user-guides/debugging-techniques.rst index 0baf52c..3ec80fe 100644 --- a/docs/user-guides/debugging-techniques.rst +++ b/docs/user-guides/debugging-techniques.rst @@ -76,13 +76,13 @@ below:: status = '200 OK' output = b'Hello World!' - print("application debug #1", file=environ['wsgi.errors'])) + print("application debug #1", file=environ['wsgi.errors']) response_headers = [('Content-type', 'text/plain'), ('Content-Length', str(len(output)))] start_response(status, response_headers) - print("application debug #2", file=environ['wsgi.errors'])) + print("application debug #2", file=environ['wsgi.errors']) return [output] @@ -95,7 +95,7 @@ below:: Alternatively, always use `print` as a statement rather than a function:: - print >> environ['wsgi.errors']), "application debug #N" + print >> environ['wsgi.errors'], "application debug #N" If 'wsgi.errors' is not available to the code which needs to output log messages, then it should explicitly direct output from 'print' -- cgit v1.2.1