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

Commit

Permalink
Use pipes for subprocess.call
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilipp committed Oct 25, 2016
1 parent 2e0d544 commit 74bae8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@
print('Registering kernel')
spr.check_call([sys.executable] +
('-m ipykernel install --user --name python3 '
'--display-name python3').split())
'--display-name python3').split(),
stderr=spr.PIPE, stdout=spr.PIPE)


# The encoding of source files.
Expand Down

0 comments on commit 74bae8e

Please sign in to comment.