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
diff options
context:
space:
mode:
authorNino van Hooff <ninovanhooff@gmail.com>2020-06-09 14:41:30 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2020-06-09 14:41:30 +0300
commit1024879f9d871330104ae1e861e86fe601eb2fdd (patch)
tree8b5fc49302206ee113d40d681d1304350996f2e4 /plugins/CuraDrive
parent167a4c1f5823fd757d0453f2e365a0805030721a (diff)
Process Review feedback for CURA-7438
Renames UltimakerCloudAuthentication to UltimakerCloudConstants Cura-7438
Diffstat (limited to 'plugins/CuraDrive')
-rw-r--r--plugins/CuraDrive/src/Settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CuraDrive/src/Settings.py b/plugins/CuraDrive/src/Settings.py
index 639c63b45f..56158922dc 100644
--- a/plugins/CuraDrive/src/Settings.py
+++ b/plugins/CuraDrive/src/Settings.py
@@ -1,13 +1,13 @@
# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
-from cura.UltimakerCloud import UltimakerCloudAuthentication
+from cura.UltimakerCloud import UltimakerCloudConstants
class Settings:
# Keeps the plugin settings.
DRIVE_API_VERSION = 1
- DRIVE_API_URL = "{}/cura-drive/v{}".format(UltimakerCloudAuthentication.CuraCloudAPIRoot, str(DRIVE_API_VERSION))
+ DRIVE_API_URL = "{}/cura-drive/v{}".format(UltimakerCloudConstants.CuraCloudAPIRoot, str(DRIVE_API_VERSION))
AUTO_BACKUP_ENABLED_PREFERENCE_KEY = "cura_drive/auto_backup_enabled"
AUTO_BACKUP_LAST_DATE_PREFERENCE_KEY = "cura_drive/auto_backup_date"