Fix Issue7007 -  Use percent-encoded consistently instead of URL Encoded variations. Changes in Modules.
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py
index a30dbdd..61dbf31 100644
--- a/Lib/logging/handlers.py
+++ b/Lib/logging/handlers.py
@@ -1012,7 +1012,7 @@
         """
         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