summaryrefslogtreecommitdiffstats
path: root/Lib/mailbox.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-09-30 23:59:04 (GMT)
committerFred Drake <fdrake@acm.org>2000-09-30 23:59:04 (GMT)
commitcc4adf27f4d45592751dc3bcfd0caae667d482fb (patch)
tree24463bd2f4433c433ed4924698bda2dac6e90703 /Lib/mailbox.py
parent0bc5953e832a69546bb7a4d16b20424d41cbfc86 (diff)
downloadcpython-cc4adf27f4d45592751dc3bcfd0caae667d482fb.zip
cpython-cc4adf27f4d45592751dc3bcfd0caae667d482fb.tar.gz
cpython-cc4adf27f4d45592751dc3bcfd0caae667d482fb.tar.bz2
Add missing "s" from format string.
This closes SourceForge patch #101714.
Diffstat (limited to 'Lib/mailbox.py')
-rwxr-xr-xLib/mailbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py
index f010777..51aeb30 100755
--- a/Lib/mailbox.py
+++ b/Lib/mailbox.py
@@ -272,7 +272,7 @@ def _test():
f = msg.getheader('from') or ""
s = msg.getheader('subject') or ""
d = msg.getheader('date') or ""
- print '-%20.20s %20.20 %-30.30s'%(f, d[5:], s)
+ print '-%20.20s %20.20s %-30.30s'%(f, d[5:], s)
if __name__ == '__main__':