Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version error message #1616

Merged
merged 1 commit into from
Jul 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions nbgrader/server_extensions/assignment_list/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,13 +339,13 @@ def get(self):
if ui_version != nbgrader_version:
msg = dedent(
"""
The version of the Assignment List nbextension does not match
the server extension; the nbextension version is {} while the
The version of the Assignment List labextension does not match
the server extension; the labextension version is {} while the
server version is {}. This can happen if you have recently
upgraded nbgrader, and may cause this extension to not work
correctly. To fix the problem, please see the nbgrader
installation instructions:
http://nbgrader.readthedocs.io/en/stable/user_guide/installation.html
http://nbgrader.readthedocs.io/en/main/user_guide/installation.html
""".format(ui_version, nbgrader_version)
).strip().replace("\n", " ")
self.log.error(msg)
Expand Down
6 changes: 3 additions & 3 deletions nbgrader/server_extensions/course_list/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,13 @@ def get(self):
if ui_version != nbgrader_version:
msg = dedent(
"""
The version of the Course List nbextension does not match
the server extension; the nbextension version is {} while the
The version of the Course List labextension does not match
the server extension; the labextension version is {} while the
server version is {}. This can happen if you have recently
upgraded nbgrader, and may cause this extension to not work
correctly. To fix the problem, please see the nbgrader
installation instructions:
http://nbgrader.readthedocs.io/en/stable/user_guide/installation.html
http://nbgrader.readthedocs.io/en/main/user_guide/installation.html
""".format(ui_version, nbgrader_version)
).strip().replace("\n", " ")
self.log.error(msg)
Expand Down
6 changes: 3 additions & 3 deletions nbgrader/server_extensions/validate_assignment/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ def get(self):
if ui_version != nbgrader_version:
msg = dedent(
"""
The version of the Validate nbextension does not match
the server extension; the nbextension version is {} while the
The version of the Validate labextension does not match
the server extension; the labextension version is {} while the
server version is {}. This can happen if you have recently
upgraded nbgrader, and may cause this extension to not work
correctly. To fix the problem, please see the nbgrader
installation instructions:
http://nbgrader.readthedocs.io/en/stable/user_guide/installation.html
http://nbgrader.readthedocs.io/en/main/user_guide/installation.html
""".format(ui_version, nbgrader_version)
).strip().replace("\n", " ")
self.log.error(msg)
Expand Down