aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Python-for-Formula-Authors.md
diff options
context:
space:
mode:
authorMichka Popoff2017-05-13 23:26:09 +0200
committerGitHub2017-05-13 23:26:09 +0200
commit43e38dfc011476a1136527c04ad5f074d2c4dd83 (patch)
tree848242329d866dcd2263daa360aeb58b6486fc2a /docs/Python-for-Formula-Authors.md
parent459fef3b09b25d3e24cce6aa6f2e3a7bd5460a2b (diff)
downloadbrew-43e38dfc011476a1136527c04ad5f074d2c4dd83.tar.bz2
Update to venv.pip_install_and_link in doc
`venv.link_scripts(bin) { venv.pip_install buildpath }` is now `venv.pip_install_and_link buildpath`
Diffstat (limited to 'docs/Python-for-Formula-Authors.md')
-rw-r--r--docs/Python-for-Formula-Authors.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Python-for-Formula-Authors.md b/docs/Python-for-Formula-Authors.md
index d3e7543db..ea86cf84c 100644
--- a/docs/Python-for-Formula-Authors.md
+++ b/docs/Python-for-Formula-Authors.md
@@ -143,7 +143,7 @@ def install
%w[six parsedatetime].each do |r|
venv.pip_install resource(r)
end
- venv.link_scripts(bin) { venv.pip_install buildpath }
+ venv.pip_install_and_link buildpath
end
```