Commit 4b243327 authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

fix lstrip bug

parent 63b7ba04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
__version__ = "0.2.5"
__version__ = "0.2.6"
+1 −1
Original line number Diff line number Diff line
@@ -285,7 +285,7 @@ def _sync_bundles(root_directory: Path):
                Path(bundles_dir, dir_name).rename(bundle_dir)
                bundle_archive_path.unlink()
            if str(bundle["url"]).startswith("local://"):
                zip_name = str(bundle["url"]).lstrip("local://")
                zip_name = str(bundle["url"])[len("local://") :]
                bundle_archive_path = Path(
                    dot_max_dir, "resources", "local_bundles", f"{zip_name}"
                )