summaryrefslogtreecommitdiff
path: root/utils/makefile.python
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2019-12-16 11:41:49 +0000
committerGitHub <noreply@github.com>2019-12-16 11:41:49 +0000
commitfb6ff5afcb1ec5771bc149fee25d186198aa7607 (patch)
tree93d214f4039bea8aa42d8713bc3c2b35d38465ad /utils/makefile.python
parent3f93fe04d8c43191cc3bff51c9add1c35728c789 (diff)
parent02d5173fb23dfcba02634e2765bf7fd91e3d0437 (diff)
Merge pull request #1767 from return42/docs
move reST source from gh-pages to master
Diffstat (limited to 'utils/makefile.python')
-rw-r--r--utils/makefile.python4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/makefile.python b/utils/makefile.python
index 228eb3f80..4aa9d6b49 100644
--- a/utils/makefile.python
+++ b/utils/makefile.python
@@ -155,7 +155,7 @@ quiet_cmd_virtualenv = PYENV usage: $ source ./$@/bin/activate
if [ ! -d "./$(PY_ENV)" ];then \
$(VIRTUALENV) $(VIRTUALENV_VERBOSE) $(VTENV_OPTS) $2; \
else \
- echo " PYENV using virtualenv from $2"; \
+ echo "PYENV using virtualenv from $2"; \
fi
# $2 path to lint
@@ -263,7 +263,7 @@ pydebug: $(PY_ENV)
# install / uninstall python objects into virtualenv (PYENV)
pyenv-install: $(PY_ENV)
@$(PY_ENV_BIN)/pip $(PIP_VERBOSE) install -e .
- @echo " ACTIVATE $(call normpath,$(PY_ENV_ACT)) "
+ @echo "ACTIVATE $(call normpath,$(PY_ENV_ACT)) "
pyenv-uninstall: $(PY_ENV)
@$(PY_ENV_BIN)/pip $(PIP_VERBOSE) uninstall --yes .