diff options
author | 2021-08-27 20:04:28 +0000 | |
---|---|---|
committer | 2021-08-27 20:05:54 +0000 | |
commit | fa25dc9e9e266dfee0ea4dbf7d292de465f8d4af (patch) | |
tree | 58b57f2fd4c38b334828ce9364f6128bbf7cf7bc /manage.py | |
parent | Merge branch 'main' into jb3/collectstatic-build (diff) |
Linting compliance
Diffstat (limited to 'manage.py')
-rwxr-xr-x | manage.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -142,7 +142,12 @@ class SiteManager: if self.debug: # In Production, collectstatic is ran in the Docker image print("Collecting static files.") - call_command("collectstatic", interactive=False, clear=True, verbosity=self.verbosity - 1) + call_command( + "collectstatic", + interactive=False, + clear=True, + verbosity=self.verbosity - 1 + ) self.set_dev_site_name() self.create_superuser() |