Skip to content
Snippets Groups Projects
Commit e0feb7e5 authored by nkour's avatar nkour
Browse files

show also time and year in date column in search results

parent 0c659276
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment