diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-30 23:59:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-30 23:59:04 (GMT) |
commit | cc4adf27f4d45592751dc3bcfd0caae667d482fb (patch) | |
tree | 24463bd2f4433c433ed4924698bda2dac6e90703 /Lib/mailbox.py | |
parent | 0bc5953e832a69546bb7a4d16b20424d41cbfc86 (diff) | |
download | cpython-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-x | Lib/mailbox.py | 2 |
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__': |