summaryrefslogtreecommitdiff
path: root/Lib/smtpd.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-04-05 10:01:48 -0400
committerBenjamin Peterson <benjamin@python.org>2015-04-05 10:01:48 -0400
commit0c803319b00d4c19cf01ee9f5541d907b705b421 (patch)
treec6200d9b51e9d779f40b9880711da5e94ac07599 /Lib/smtpd.py
parent9a6e201f7d5f147b776274c1598089fc68859e98 (diff)
downloadcpython-git-0c803319b00d4c19cf01ee9f5541d907b705b421.tar.gz
fix extended command syntax (closes #23872)
Diffstat (limited to 'Lib/smtpd.py')
-rwxr-xr-xLib/smtpd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtpd.py b/Lib/smtpd.py
index 1fa157ade7..0d0030a1ca 100755
--- a/Lib/smtpd.py
+++ b/Lib/smtpd.py
@@ -413,7 +413,7 @@ class SMTPChannel(asynchat.async_chat):
def smtp_HELP(self, arg):
if arg:
- extended = ' [SP <mail parameters]'
+ extended = ' [SP <mail-parameters>]'
lc_arg = arg.upper()
if lc_arg == 'EHLO':
self.push('250 Syntax: EHLO hostname')