From 2fc23dacbafcc28a33e4690b738cede19cddabaa Mon Sep 17 00:00:00 2001 From: David Stansby Date: Wed, 14 Feb 2018 22:16:17 +0000 Subject: [PATCH] Backport PR #10461: fix broken link in lib/matplotlib/dates.py comment --- lib/matplotlib/dates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/dates.py b/lib/matplotlib/dates.py index 09bae4ea5b37..ff9bc5c1f42d 100644 --- a/lib/matplotlib/dates.py +++ b/lib/matplotlib/dates.py @@ -725,7 +725,7 @@ def strftime(self, dt, fmt=None): fmt = fmt.replace("%s", "s") if dt.year >= 1900: # Note: in python 3.3 this is okay for years >= 1000, - # refer to http://bugs.python.org/issue177742 + # refer to http://bugs.python.org/issue1777412 return cbook.unicode_safe(dt.strftime(fmt)) return self.strftime_pre_1900(dt, fmt)