Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura/API
diff options
context:
space:
mode:
authorNino van Hooff <ninovanhooff@gmail.com>2020-05-19 15:32:02 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2020-05-19 15:32:02 +0300
commit7388829fc10122625fbaf2fee4533b190a721f07 (patch)
treef56ce2280e4249c7482f359cac3e7b230e5bc995 /cura/API
parente7af27ff808167f37eeced3d1026d5619f283f9d (diff)
Change account sync date format back to dd/mm/YYYY
For consistency with the rest of the application
Diffstat (limited to 'cura/API')
-rw-r--r--cura/API/Account.py2
1 files changed, 1 insertions, 1 deletions
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: