From de0ef8ae62216d33408bca50d28ae2149c148b44 Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Wed, 13 May 2020 16:15:29 +0200 Subject: [PATCH] Change account sync date format to mm/dd/YYYY CURA-7290 --- 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 d1fda63d2b..872fe815da 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -121,7 +121,7 @@ class Account(QObject): self.syncStateChanged.emit(self._sync_state) if self._sync_state == SyncState.SUCCESS: - self._last_sync_str = datetime.now().strftime("%d/%m/%Y %H:%M") + self._last_sync_str = datetime.now().strftime("%m/%d/%Y %H:%M") self.lastSyncDateTimeChanged.emit() if self._sync_state != SyncState.SYNCING: