]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing "s" from format string.
authorFred Drake <fdrake@acm.org>
Sat, 30 Sep 2000 23:59:04 +0000 (23:59 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 30 Sep 2000 23:59:04 +0000 (23:59 +0000)
This closes SourceForge patch #101714.

Lib/mailbox.py

index f0107772bf6abfb43f8e91026200d3a2ac60ef93..51aeb300cdb49a8bf29a1c7460a33977b842649b 100755 (executable)
@@ -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__':