Commit cc4adf27 authored by Fred Drake's avatar Fred Drake

Add missing "s" from format string.

This closes SourceForge patch #101714.
parent 0bc5953e
...@@ -272,7 +272,7 @@ def _test(): ...@@ -272,7 +272,7 @@ def _test():
f = msg.getheader('from') or "" f = msg.getheader('from') or ""
s = msg.getheader('subject') or "" s = msg.getheader('subject') or ""
d = msg.getheader('date') 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__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment