Bugfix: last_changed would always print current time.

This commit is contained in:
Guido van Rossum 1997-06-02 15:51:51 +00:00
parent 80c2a1674e
commit c22eb01bfe
1 changed files with 1 additions and 1 deletions

View File

@ -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):