Modify ↓
Opened 21 years ago
Closed 20 years ago
#884 closed defect (fixed)
Changeset should display the time as defined by the locale
| Reported by: | anonymous | Owned by: | Jonas Borgström |
|---|---|---|---|
| Priority: | lowest | Milestone: | 0.9 |
| Component: | version control/changeset view | Version: | devel |
| Severity: | trivial | Keywords: | |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal Changes: | |||
Description
Patch for Changeset.py:
@@ -179,7 +179,7 @@
changeset_info = self.get_changeset_info (self.rev)
self.req.hdf.setValue('changeset.time',
- time.strftime('%c', time.localtime(int(changeset_info['time']))))
+ time.asctime (time.localtime(int(changeset_info['time']))))
author = changeset_info['author'] or 'anonymous'
self.req.hdf.setValue('changeset.author', util.escape(author))
self.req.hdf.setValue('changeset.message',
Attachments (0)
Change History (2)
comment:1 by , 21 years ago
| Summary: | Changeset should display the Time as defined by the locale → Changeset should display the time as defined by the locale |
|---|
comment:2 by , 20 years ago
| Milestone: | → 0.9 |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.



It does that now.