Bugfix: last_changed would always print current time.
This commit is contained in:
parent
80c2a1674e
commit
c22eb01bfe
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue