Skip to content

Commit

Permalink
Fix migration from old settings (#60)
Browse files Browse the repository at this point in the history
* Fix migration by creating directory before copying

* Bump version
  • Loading branch information
krassowski authored Jun 26, 2024
1 parent 581d1ee commit 6c76762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-launchpad",
"version": "1.0.0",
"version": "1.0.1",
"description": "A redesigned JupyterLab launcher",
"keywords": [
"jupyter",
Expand Down

0 comments on commit 6c76762

Please sign in to comment.