summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Gagliarducci <inlate@tin.it>2022-07-22 17:38:55 +0200
committerGitHub <noreply@github.com>2022-07-22 17:38:55 +0200
commit2f370374797638c3d4697a8cfec99050874d5e2f (patch)
treefe318451f02a52c3c1598b5baaf59cc0c012108e
parenta376ffc899a160e8ee91160e2da76edcfa260b31 (diff)
downloadmod_wsgi-2f370374797638c3d4697a8cfec99050874d5e2f.tar.gz
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
-rw-r--r--docs/user-guides/debugging-techniques.rst6
1 files 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'