Skip to content

Commit 7e054a7

Browse files
committed
Fix some broken link
1 parent 1919152 commit 7e054a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

notebook/nbextensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ def _should_copy(src, dest, logger=None):
10181018
return True
10191019
if os.stat(src).st_mtime - os.stat(dest).st_mtime > 1e-6:
10201020
# we add a fudge factor to work around a bug in python 2.x
1021-
# that was fixed in python 3.x: http://bugs.python.org/issue12904
1021+
# that was fixed in python 3.x: https://bugs.python.org/issue12904
10221022
if logger:
10231023
logger.warn("Out of date: %s" % dest)
10241024
return True

notebook/notebookapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1504,7 +1504,7 @@ def start(self):
15041504
info(_("Welcome to Project Jupyter! Explore the various tools available"
15051505
" and their corresponding documentation. If you are interested"
15061506
" in contributing to the platform, please visit the community"
1507-
"resources section at http://jupyter.org/community.html."))
1507+
"resources section at https://jupyter.org/community.html."))
15081508

15091509
self.write_server_info_file()
15101510

0 commit comments

Comments
 (0)