aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py
diff options
context:
space:
mode:
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()