Ticket #53780: patch-jupyter_core-paths.py.diff
File patch-jupyter_core-paths.py.diff, 696 bytes (added by Schamschula (Marius Schamschula), 8 years ago) |
---|
-
jupyter_core/paths.py
old new 118 118 SYSTEM_JUPYTER_PATH = [os.path.join(sys.prefix, 'share', 'jupyter')] 119 119 else: 120 120 SYSTEM_JUPYTER_PATH = [ 121 "/usr/local/share/jupyter", 122 "/usr/share/jupyter", 121 "%PREFIX%/share/jupyter", 123 122 ] 124 123 125 124 ENV_JUPYTER_PATH = [os.path.join(sys.prefix, 'share', 'jupyter')] … … 170 169 SYSTEM_CONFIG_PATH = [] 171 170 else: 172 171 SYSTEM_CONFIG_PATH = [ 173 "/usr/local/etc/jupyter", 174 "/etc/jupyter", 172 "%PREFIX%/etc/jupyter", 175 173 ] 176 174 177 175 ENV_CONFIG_PATH = [os.path.join(sys.prefix, 'etc', 'jupyter')]