Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
Use check_call when registering ipython kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilipp committed Oct 25, 2016
1 parent 47319c0 commit 2e0d544
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
if on_rtd:
import subprocess as spr
print('Registering kernel')
spr.call([sys.executable] +
('-m ipykernel install --user --name python3 '
'--display-name python3').split())
spr.check_call([sys.executable] +
('-m ipykernel install --user --name python3 '
'--display-name python3').split())


# The encoding of source files.
Expand Down

0 comments on commit 2e0d544

Please sign in to comment.