show also time and year in date column in search results

This commit is contained in:
Nikos Kouremenos 2005-12-26 14:37:27 +00:00
parent 0c659276d2
commit e0feb7e57d
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ class HistoryWindow:
# also do we need show at all?
for row in results:
local_time = time.localtime(row[1])
tim = time.strftime('%x', local_time)
tim = time.strftime('%c', local_time)
model.append((row[0], tim, row[4]))
def on_results_treeview_row_activated(self, widget, path, column):