Skip to content

Commit

Permalink
Fix pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Jun 6, 2017
1 parent 4e27f4b commit c0d887c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion opsdroid/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def git_clone(git_url, install_path, branch):
def pip_install_deps(requirements_path):
"""Pip install a requirements.txt file and wait for finish."""
process = subprocess.Popen(["pip", "install",
"--target={}".format(DEFAULT_MODULE_DEPS_PATH),
"--target={}".format(
DEFAULT_MODULE_DEPS_PATH),
"--ignore-installed",
"-r", requirements_path],
shell=False,
Expand Down

0 comments on commit c0d887c

Please sign in to comment.