devbits 0.1.3__tar.gz → 0.1.4__tar.gz
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.
- {devbits-0.1.3 → devbits-0.1.4}/PKG-INFO +1 -1
- {devbits-0.1.3 → devbits-0.1.4}/devbits/__init__.py +1 -1
- {devbits-0.1.3 → devbits-0.1.4}/devbits/gui.py +2 -2
- {devbits-0.1.3 → devbits-0.1.4}/devbits.egg-info/PKG-INFO +1 -1
- {devbits-0.1.3 → devbits-0.1.4}/pyproject.toml +1 -1
- {devbits-0.1.3 → devbits-0.1.4}/LICENSE +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/README.md +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits/cache.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits/cli.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits/image.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits/media.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits/project.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits/scripts.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits/utils.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits.egg-info/SOURCES.txt +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits.egg-info/dependency_links.txt +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits.egg-info/entry_points.txt +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits.egg-info/requires.txt +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/devbits.egg-info/top_level.txt +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/setup.cfg +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/tests/test_cli.py +0 -0
- {devbits-0.1.3 → devbits-0.1.4}/tests/test_gui_cli.py +0 -0
|
@@ -1514,7 +1514,7 @@ class _Handler(BaseHTTPRequestHandler):
|
|
|
1514
1514
|
self._serve_static(fpath)
|
|
1515
1515
|
else:
|
|
1516
1516
|
self.send_error(404)
|
|
1517
|
-
except (BrokenPipeError, ConnectionResetError):
|
|
1517
|
+
except (BrokenPipeError, ConnectionResetError, ConnectionAbortedError, OSError):
|
|
1518
1518
|
pass
|
|
1519
1519
|
|
|
1520
1520
|
# ── POST ───────────────────────────────────────────────────
|
|
@@ -1528,7 +1528,7 @@ class _Handler(BaseHTTPRequestHandler):
|
|
|
1528
1528
|
self._handle_export()
|
|
1529
1529
|
else:
|
|
1530
1530
|
self.send_error(404)
|
|
1531
|
-
except (BrokenPipeError, ConnectionResetError):
|
|
1531
|
+
except (BrokenPipeError, ConnectionResetError, ConnectionAbortedError, OSError):
|
|
1532
1532
|
pass
|
|
1533
1533
|
|
|
1534
1534
|
# ── Serve HTML (inject initial video) ──────────────────────
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|