fastled 1.1.32__py2.py3-none-any.whl → 1.1.34__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastled/__init__.py +1 -1
- fastled/compile_server.py +2 -2
- fastled/docker_manager.py +665 -590
- fastled/filewatcher.py +202 -202
- fastled/open_browser.py +59 -59
- fastled/parse_args.py +12 -5
- fastled/spinner.py +34 -34
- {fastled-1.1.32.dist-info → fastled-1.1.34.dist-info}/METADATA +3 -1
- {fastled-1.1.32.dist-info → fastled-1.1.34.dist-info}/RECORD +13 -13
- {fastled-1.1.32.dist-info → fastled-1.1.34.dist-info}/LICENSE +0 -0
- {fastled-1.1.32.dist-info → fastled-1.1.34.dist-info}/WHEEL +0 -0
- {fastled-1.1.32.dist-info → fastled-1.1.34.dist-info}/entry_points.txt +0 -0
- {fastled-1.1.32.dist-info → fastled-1.1.34.dist-info}/top_level.txt +0 -0
fastled/__init__.py
CHANGED
fastled/compile_server.py
CHANGED
@@ -110,13 +110,13 @@ class CompileServer:
|
|
110
110
|
print("Docker could not be started. Exiting.")
|
111
111
|
raise RuntimeError("Docker could not be started. Exiting.")
|
112
112
|
now = datetime.now(timezone.utc)
|
113
|
-
now_str = now.strftime("%Y-%m-%d
|
113
|
+
now_str = now.strftime("%Y-%m-%d")
|
114
114
|
|
115
115
|
upgrade = False
|
116
116
|
if self.auto_updates is None:
|
117
117
|
prev_date_str = DISK_CACHE.get("last-update")
|
118
118
|
if prev_date_str != now_str:
|
119
|
-
print("One
|
119
|
+
print("One day has passed, checking docker for updates")
|
120
120
|
upgrade = True
|
121
121
|
else:
|
122
122
|
upgrade = self.auto_updates
|