Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
tommybolin committed Oct 19, 2018
1 parent d39ffbd commit 61dc550
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/config_sphinx.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,13 @@
bashCommand = "ls -la"
process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE)
output, error = process.communicate()
print(output, error)

# Install
bashCommand = "pwd"
process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE)
output, error = process.communicate()
print(output, error)

from common import GLOBAL_LINKS # noqa isort:skip

Expand Down

0 comments on commit 61dc550

Please sign in to comment.