Skip to content

Commit cf58a7b

Browse files
committed
Add a period at the end of message
1 parent 053f5ca commit cf58a7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/repl/ipython_kernel/install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,15 +259,15 @@ def check(cls):
259259
except NoSuchKernel:
260260
warnings.warn(f'No kernel named {ident} is accessible; '
261261
'check your Jupyter configuration '
262-
'(see https://docs.jupyter.org/en/latest/use/jupyter-directories.html)')
262+
'(see https://docs.jupyter.org/en/latest/use/jupyter-directories.html).')
263263
else:
264264
import sys
265265
import shutil
266266
from pathlib import Path
267267
if Path(shutil.which(spec.argv[0])).resolve() != Path(sys.executable).resolve():
268268
warnings.warn(f'The kernel named {ident} does not seem to correspond to this '
269269
'installation of SageMath; check your Jupyter configuration '
270-
'(see https://docs.jupyter.org/en/latest/use/jupyter-directories.html)')
270+
'(see https://docs.jupyter.org/en/latest/use/jupyter-directories.html).')
271271

272272

273273
def have_prerequisites(debug=True) -> bool:

0 commit comments

Comments
 (0)