From c22eb01bfe37b21fa6d1bdf002c321e84a05ccbd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 2 Jun 1997 15:51:51 +0000 Subject: Bugfix: last_changed would always print current time. --- Tools/faqwiz/faqwiz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index e721425..06e1ab5 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): -- cgit v0.12