Fix 1698398: Zipfile.printdir() crashed because the format string expected a tuple object of length six instead of a time.struct_time object.
diff --git a/Misc/NEWS b/Misc/NEWS
index 1e742fb..04aa21f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -414,6 +414,9 @@
- Bug #1653736: Fix signature of time_isoformat.
+- Issue #1698398 Zipfile.printdir() crashed because the format string
+ expected a tuple type of length six instead of time.struct_time object.
+
- operator.count() now raises an OverflowError when the count reaches sys.maxint.
- Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.