aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-08-27 20:04:28 +0000
committerGravatar GitHub <[email protected]>2021-08-27 20:05:54 +0000
commitfa25dc9e9e266dfee0ea4dbf7d292de465f8d4af (patch)
tree58b57f2fd4c38b334828ce9364f6128bbf7cf7bc /manage.py
parentMerge branch 'main' into jb3/collectstatic-build (diff)
Linting compliance
Diffstat (limited to 'manage.py')
-rwxr-xr-xmanage.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/manage.py b/manage.py
index f3256ecf..8bb5ae0d 100755
--- a/manage.py
+++ b/manage.py
@@ -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()