Add missing "s" from format string.

This closes SourceForge patch #101714.
This commit is contained in:
Fred Drake 2000-09-30 23:59:04 +00:00
parent 0bc5953e83
commit cc4adf27f4
1 changed files with 1 additions and 1 deletions

View File

@ -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__':