commit | c22eb01bfe37b21fa6d1bdf002c321e84a05ccbd | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Jun 02 15:51:51 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Jun 02 15:51:51 1997 +0000 |
tree | ade363dadeab084c86df46e6fed56509f7b0461b | |
parent | 80c2a1674efdfd95e979172842237509b33a8378 [diff] [blame] |
Bugfix: last_changed would always print current time.
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 @@ 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):