Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cc4adf2

Browse files
committed
Add missing "s" from format string.
This closes SourceForge patch #101714.
1 parent 0bc5953 commit cc4adf2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/mailbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def _test():
272272
f = msg.getheader('from') or ""
273273
s = msg.getheader('subject') or ""
274274
d = msg.getheader('date') or ""
275-
print '-%20.20s %20.20 %-30.30s'%(f, d[5:], s)
275+
print '-%20.20s %20.20s %-30.30s'%(f, d[5:], s)
276276

277277

278278
if __name__ == '__main__':

0 commit comments

Comments
 (0)