summaryrefslogtreecommitdiff
path: root/Lib/logging
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-08-09 20:08:48 +0000
committerSenthil Kumaran <orsenthil@gmail.com>2010-08-09 20:08:48 +0000
commit1c5b613cc117296f528d01676a70703f1f65a582 (patch)
tree381625698b12b349ddec0505d16221ee115f376a /Lib/logging
parente9e58332451bc02e1e439a0c1cf535c3a8bcb4e4 (diff)
downloadcpython-1c5b613cc117296f528d01676a70703f1f65a582.tar.gz
Merged revisions 83901 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83901 | senthil.kumaran | 2010-08-10 01:31:35 +0530 (Tue, 10 Aug 2010) | 3 lines Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Changes in Modules. ........
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py
index 82c418b368..9013f8d0b1 100644
--- a/Lib/logging/handlers.py
+++ b/Lib/logging/handlers.py
@@ -1012,7 +1012,7 @@ class HTTPHandler(logging.Handler):
"""
Emit a record.
- Send the record to the Web server as an URL-encoded dictionary
+ Send the record to the Web server as a percent-encoded dictionary
"""
try:
import http.client, urllib.parse