diff options
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/webservers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/webservers.rst b/Doc/howto/webservers.rst index 7f68b3b..049fe1b 100644 --- a/Doc/howto/webservers.rst +++ b/Doc/howto/webservers.rst @@ -293,7 +293,7 @@ following WSGI-application:: # -*- coding: UTF-8 -*- import sys, os - from cgi import escape + from html import escape from flup.server.fcgi import WSGIServer def app(environ, start_response): |