Skip to content

Commit

Permalink
Fix #9550
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Jan 5, 2021
1 parent 0b46ba0 commit 3ebecb4
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 3ebecb4

Please sign in to comment.