can I see prints? format

This commit is contained in:
foamyguy 2024-04-08 09:39:37 -05:00
parent b658576873
commit 30e80f3486

View file

@ -108,7 +108,8 @@ def ensure_latest_bundle(bundle):
# missing directories (new platform added on an existing install
# or side effect of pytest or network errors)
print(
f"checking dir: {bundle.lib_dir(platform)} = {os.path.isdir(bundle.lib_dir(platform))}"
f"checking dir: {bundle.lib_dir(platform)} = "
f"{os.path.isdir(bundle.lib_dir(platform))}"
)
do_update = do_update or not os.path.isdir(bundle.lib_dir(platform))
else: