From bcf3bc58621d8744d1974365abb21239a408ba4c Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Tue, 27 Aug 2019 16:08:53 -0300 Subject: [PATCH] fix: history cannot render datetime instances --- bauh/view/qt/history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/view/qt/history.py b/bauh/view/qt/history.py index 8d54bda0..9f896e93 100644 --- a/bauh/view/qt/history.py +++ b/bauh/view/qt/history.py @@ -34,7 +34,7 @@ class HistoryDialog(QDialog): for col, key in enumerate(sorted(commit.keys())): item = QTableWidgetItem() - item.setText(commit[key]) + item.setText(str(commit[key])) item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled) if current_status: