Skip to content

Commit

Permalink
Merge pull request #7386 from minrk/windows-jupyter-kernels
Browse files Browse the repository at this point in the history
fix system-wide kernel path on Windows
  • Loading branch information
Carreau committed Jan 6, 2015
2 parents f2858d1 + b4dc2ce commit 4841098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/kernel/kernelspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
if os.name == 'nt':
programdata = os.environ.get('PROGRAMDATA', None)
if programdata:
SYSTEM_KERNEL_DIRS = [pjoin(programdata, 'ipython', 'kernels')]
SYSTEM_KERNEL_DIRS = [pjoin(programdata, 'jupyter', 'kernels')]
else: # PROGRAMDATA is not defined by default on XP.
SYSTEM_KERNEL_DIRS = []
else:
Expand Down

0 comments on commit 4841098

Please sign in to comment.