Skip to content

Commit

Permalink
Backport PR jupyterlab#15133: Add a valid email in update extension
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet authored and meeseeksmachine committed Sep 18, 2023
1 parent efda804 commit 145ac19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterlab/upgrade_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def update_extension( # noqa

# Build up the template answers and run the template engine
author = data.get("author", "<author_name>")
author_email = "<author_email>"
author_email = ""
if isinstance(author, dict):
author_name = author.get("name", "<author_name>")
author_email = author.get("email", author_email)
Expand Down

0 comments on commit 145ac19

Please sign in to comment.