From 7388829fc10122625fbaf2fee4533b190a721f07 Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Tue, 19 May 2020 14:32:02 +0200 Subject: [PATCH] Change account sync date format back to dd/mm/YYYY For consistency with the rest of the application --- cura/API/Account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index 49cec55eb3..00afe9e528 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -126,7 +126,7 @@ class Account(QObject): self.syncStateChanged.emit(self._sync_state) if self._sync_state == SyncState.SUCCESS: - self._last_sync_str = datetime.now().strftime("%m/%d/%Y %H:%M") + self._last_sync_str = datetime.now().strftime("%d/%m/%Y %H:%M") self.lastSyncDateTimeChanged.emit() if self._sync_state != SyncState.SYNCING: