Skip to content

Commit

Permalink
Update wsgiref.rst (#10488)
Browse files Browse the repository at this point in the history
  • Loading branch information
andresdelfino authored and DinoV committed May 6, 2019
1 parent cec0184 commit f7b494c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/wsgiref.rst
Expand Up @@ -767,7 +767,7 @@ This is a working "Hello World" WSGI application::
# use a function (note that you're not limited to a function, you can
# use a class for example). The first argument passed to the function
# is a dictionary containing CGI-style environment variables and the
# second variable is the callable object (see PEP 333).
# second variable is the callable object.
def hello_world_app(environ, start_response):
status = '200 OK' # HTTP Status
headers = [('Content-type', 'text/plain; charset=utf-8')] # HTTP Headers
Expand Down

0 comments on commit f7b494c

Please sign in to comment.