Skip to content

Commit

Permalink
Fix migration by creating directory before copying
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Jun 26, 2024
1 parent 581d1ee commit b4be031
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions jupyterlab_launchpad/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ def initialize(self, name: str, settings_dir: str):
old_path = Path(settings_dir) / "jupyterlab-new-launcher" / f"{name}.json"
if not self.path.exists() and old_path.exists():
# migrate database from prior to rename
self.path.parent.mkdir(exist_ok=True, parents=True)
shutil.copy(old_path, self.path)
old_path.unlink()

Expand Down

0 comments on commit b4be031

Please sign in to comment.