We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6700e66 commit aac52c6Copy full SHA for aac52c6
jupyter_drives/manager.py
@@ -207,7 +207,7 @@ def get_excluded_drives(self):
207
except Exception as e:
208
raise tornado.web.HTTPError(
209
status_code=httpx.codes.BAD_REQUEST,
210
- reason=f"The following error occured when listing excluded drives: {e}",
+ reason=f"The following error occurred when listing excluded drives: {e}",
211
)
212
213
response = {
@@ -226,7 +226,7 @@ def include_drive(self, include_drive_name):
226
227
228
status_code= httpx.codes.BAD_REQUEST,
229
- reason= f"The following error occured when including the drive: {e}"
+ reason= f"The following error occurred when including the drive: {e}"
230
231
232
return
0 commit comments