Fix missing docstring

This commit is contained in:
Mike Place 2014-07-14 11:08:41 -06:00
parent bcd8c42659
commit 44c30e6252

View File

@ -73,6 +73,9 @@ def _get_cached_requirements(requirements, saltenv):
def _get_env_activate(bin_env):
'''
Return the path to the activate binary
'''
if not bin_env:
raise CommandNotFoundError('Could not find a `activate` binary')
@ -248,7 +251,8 @@ def install(pkgs=None,
Complicated CLI example::
salt '*' pip.install markdown,django editable=git+https://github.com/worldcompany/djangoembed.git#egg=djangoembed upgrade=True no_deps=True
salt '*' pip.install markdown,django \
editable=git+https://github.com/worldcompany/djangoembed.git#egg=djangoembed upgrade=True no_deps=True
'''
# Switching from using `pip_bin` and `env` to just `bin_env`