From 7e054a7b69a1a59283e2b88461abe8d8508dd55d Mon Sep 17 00:00:00 2001 From: bacboc Date: Tue, 21 Nov 2017 01:28:46 +0900 Subject: [PATCH] Fix some broken link --- notebook/nbextensions.py | 2 +- notebook/notebookapp.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/nbextensions.py b/notebook/nbextensions.py index afd0b163a..1e3587603 100644 --- a/notebook/nbextensions.py +++ b/notebook/nbextensions.py @@ -1018,7 +1018,7 @@ def _should_copy(src, dest, logger=None): return True if os.stat(src).st_mtime - os.stat(dest).st_mtime > 1e-6: # we add a fudge factor to work around a bug in python 2.x - # that was fixed in python 3.x: http://bugs.python.org/issue12904 + # that was fixed in python 3.x: https://bugs.python.org/issue12904 if logger: logger.warn("Out of date: %s" % dest) return True diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index 41a68a3c6..6919d4cb6 100755 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -1504,7 +1504,7 @@ class NotebookApp(JupyterApp): info(_("Welcome to Project Jupyter! Explore the various tools available" " and their corresponding documentation. If you are interested" " in contributing to the platform, please visit the community" - "resources section at http://jupyter.org/community.html.")) + "resources section at https://jupyter.org/community.html.")) self.write_server_info_file()