plain.dev 0.18.0__tar.gz → 0.18.1__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.
- {plain_dev-0.18.0 → plain_dev-0.18.1}/PKG-INFO +1 -1
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/poncho/manager.py +1 -2
- {plain_dev-0.18.0 → plain_dev-0.18.1}/pyproject.toml +1 -1
- {plain_dev-0.18.0 → plain_dev-0.18.1}/uv.lock +1 -1
- {plain_dev-0.18.0 → plain_dev-0.18.1}/.gitignore +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/LICENSE +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/README.md +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/README.md +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/__init__.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/cli.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/contribute/__init__.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/contribute/cli.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/db/__init__.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/db/cli.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/db/container.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/debug.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/default_settings.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/entrypoints.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/gunicorn_logging.json +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/mkcert.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/pid.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/poncho/__init__.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/poncho/color.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/poncho/compat.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/poncho/printer.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/poncho/process.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/precommit/__init__.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/precommit/cli.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/requests.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/services.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/templates/dev/requests.html +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/urls.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/utils.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/plain/dev/views.py +0 -0
- {plain_dev-0.18.0 → plain_dev-0.18.1}/tests/settings.py +0 -0
@@ -2,7 +2,6 @@ import datetime
|
|
2
2
|
import multiprocessing
|
3
3
|
import queue
|
4
4
|
import signal
|
5
|
-
import sys
|
6
5
|
|
7
6
|
from .color import get_colors
|
8
7
|
from .compat import ProcessManager
|
@@ -54,7 +53,7 @@ class Manager:
|
|
54
53
|
self._clock = datetime.datetime
|
55
54
|
self._procmgr = ProcessManager()
|
56
55
|
|
57
|
-
self._printer = printer if printer is not None else Printer(
|
56
|
+
self._printer = printer if printer is not None else Printer(lambda s: print(s))
|
58
57
|
self._printer.width = len(SYSTEM_PRINTER_NAME)
|
59
58
|
|
60
59
|
self._process_ctor = Process
|
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
|
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
|