From 6f9e86a1aca0f1037e173c1861785a1d86eb24a5 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Fri, 24 Nov 2023 10:53:02 +0100 Subject: [PATCH] qml: fix wrong year near newyear in transaction list --- electrum/gui/qml/qetransactionlistmodel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/qetransactionlistmodel.py b/electrum/gui/qml/qetransactionlistmodel.py index 52250c8d4..9de352ba1 100644 --- a/electrum/gui/qml/qetransactionlistmodel.py +++ b/electrum/gui/qml/qetransactionlistmodel.py @@ -179,7 +179,7 @@ class QETransactionListModel(QAbstractListModel, QtEventListener): 'yesterday': '%H:%M:%S', 'lastweek': '%a, %H:%M:%S', 'lastmonth': '%a %d, %H:%M:%S', - 'older': '%G-%m-%d %H:%M:%S' + 'older': '%Y-%m-%d %H:%M:%S' } if section not in dfmt: section = 'older'