summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNoah Doersing <doersino@gmail.com>2020-05-01 04:30:10 (GMT)
committerGitHub <noreply@github.com>2020-05-01 04:30:10 (GMT)
commit8bcfd31cc01e068bca78aa42a87c24aea6ebc6b1 (patch)
treeced6431f52211f566731e99aa3caffca4ffc6512 /Lib
parent3e0a6f37dfdd595be737baae00ec0e036a912615 (diff)
downloadcpython-8bcfd31cc01e068bca78aa42a87c24aea6ebc6b1.zip
cpython-8bcfd31cc01e068bca78aa42a87c24aea6ebc6b1.tar.gz
cpython-8bcfd31cc01e068bca78aa42a87c24aea6ebc6b1.tar.bz2
Change 'exception happened' to 'exception occurred' in two places (#19767)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/socketserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index 1ad028f..57c1ae6 100644
--- a/Lib/socketserver.py
+++ b/Lib/socketserver.py
@@ -374,7 +374,7 @@ class BaseServer:
"""
print('-'*40, file=sys.stderr)
- print('Exception happened during processing of request from',
+ print('Exception occurred during processing of request from',
client_address, file=sys.stderr)
import traceback
traceback.print_exc()