From b53a8abe0e74514e8d9d7225766190ca978e2a95 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 14 Mar 2013 01:12:09 +0000 Subject: [PATCH] cgi.py: Fix documentation for `~:H' format operation. Organization: Straylight/Edgeware From: Mark Wooding Once upon a time it was going to do form-urlencoding, but it turns out that quotification is much more useful. --- cgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi.py b/cgi.py index 531a49c..3b3d441 100644 --- a/cgi.py +++ b/cgi.py @@ -230,7 +230,7 @@ class FormatHTML (F.SimpleFormatOperation): """ ~H: escape output suitable for inclusion in HTML. - With `:', instead apply form-urlencoding. + With `:', additionally apply quotification. """ def _convert(me, arg): if me.colonp: return html_quotify(arg) -- [mdw]