From: Guido van Rossum Date: Mon, 2 Jun 1997 15:51:51 +0000 (+0000) Subject: Bugfix: last_changed would always print current time. X-Git-Tag: v1.5a3~406 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c22eb01bfe37b21fa6d1bdf002c321e84a05ccbd;p=python Bugfix: last_changed would always print current time. --- diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index e721425190..06e1ab5106 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py @@ -489,7 +489,7 @@ class FaqWizard: mtime = mtime = entry.getmtime() if mtime > latest: latest = mtime - print time.strftime(LAST_CHANGED, time.localtime(now)) + print time.strftime(LAST_CHANGED, time.localtime(latest)) emit(EXPLAIN_MARKS) def format_all(self, files, edit=1, headers=1):