diff options
Diffstat (limited to 'docs/howto/static-files/deployment.txt')
| -rw-r--r-- | docs/howto/static-files/deployment.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/howto/static-files/deployment.txt b/docs/howto/static-files/deployment.txt index da0427343e..805e799eaa 100644 --- a/docs/howto/static-files/deployment.txt +++ b/docs/howto/static-files/deployment.txt @@ -104,9 +104,9 @@ Here's how this might look in a fabfile:: def deploy_static(): local('./manage.py collectstatic') project.rsync_project( - remote_dir = env.remote_static_root, - local_dir = env.local_static_root, - delete = True + remote_dir=env.remote_static_root, + local_dir=env.local_static_root, + delete=True, ) .. _staticfiles-from-cdn: |
