mirror of https://github.com/python/cpython.git
Add missing "s" from format string.
This closes SourceForge patch #101714.
This commit is contained in:
parent
0bc5953e83
commit
cc4adf27f4
|
@ -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__':
|
||||
|
|
Loading…
Reference in New Issue