##// END OF EJS Templates
Print commit time/date from perspective of committer....
Bryan O'Sullivan -
r1317:008d3666 default
parent child Browse files
Show More
@@ -329,7 +329,7 b' def show_changeset(ui, repo, rev=0, chan'
329 tz = int(tz)
329 tz = int(tz)
330 except ValueError:
330 except ValueError:
331 tz = 0
331 tz = 0
332 date = time.asctime(time.localtime(float(t))) + " %+05d" % (int(tz)/-36)
332 date = time.asctime(time.gmtime(float(t) - tz)) + " %+05d" % (int(tz)/-36)
333
333
334 parents = [(log.rev(p), ui.verbose and hex(p) or short(p))
334 parents = [(log.rev(p), ui.verbose and hex(p) or short(p))
335 for p in log.parents(changenode)
335 for p in log.parents(changenode)
General Comments 0
You need to be logged in to leave comments. Login now