Skip to content

Commit

Permalink
Merge pull request #9551 from agoose77/patch-3
Browse files Browse the repository at this point in the history
Fix #9550 in upgrade_extension.py
  • Loading branch information
blink1073 committed Jan 5, 2021
2 parents 0b46ba0 + 3ebecb4 commit 22f33da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterlab/upgrade_extension.py
Expand Up @@ -80,7 +80,7 @@ def update_extension(target, interactive=True):
if name not in data:
continue

for (key, value) in data[name].items():
for (key, value) in list(data[name].items()):
if key.startswith('@phosphor/'):
has_phosphor = True
data[name][key.replace('@phosphor/', '@lumino/')] = value
Expand Down

0 comments on commit 22f33da

Please sign in to comment.