Changes examples from using Flask to some other package (Bottle was chosen) as per @mpdehaan's suggestion.

This commit is contained in:
Pedro Romano 2013-08-16 10:51:14 +01:00 committed by Michael DeHaan
commit 5a5d431fa1
2 changed files with 12 additions and 12 deletions

View file

@ -72,8 +72,8 @@ EXAMPLES = '''
# Examples from Ansible Playbooks
- easy_install: name=pip
# Install foo into the specified virtualenv.
- easy_install: name=foo virtualenv=/webapps/myapp/venv
# Install Bottle into the specified virtualenv.
- easy_install: name=bottle virtualenv=/webapps/myapp/venv
'''
def _is_package_installed(module, name, easy_install):