diff options
Diffstat (limited to 'fabfile/__init__.py')
-rw-r--r-- | fabfile/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fabfile/__init__.py b/fabfile/__init__.py index d6733aa..3cb9bb0 100644 --- a/fabfile/__init__.py +++ b/fabfile/__init__.py @@ -21,10 +21,10 @@ def deploy(): Updates the sources, links the appropriate settings, collects the static files and synchronizes/migrates the database. - Installing/updating Python packages or loading fixtures needs to be done - manually. + Loading fixtures needs to be done manually. """ helpers.update_project() + helpers.install_requirements() helpers.link_settings() helpers.collect_static() helpers.manage('supervisor stop gunicorn') |