diff options
author | 2022-12-29 00:58:15 +0100 | |
---|---|---|
committer | 2022-12-29 00:58:15 +0100 | |
commit | ab1b5460f4f089283ccd43f9bb19ddcc4e600a3a (patch) | |
tree | 609ebd37878fb5ba5532048d40236fa3c4a53736 /manage.py | |
parent | remove useless blank constraint (diff) | |
parent | Update help channels guide (#814) (diff) |
Merge branch 'main' into 2304-link-previous-nomination-threads
Diffstat (limited to 'manage.py')
-rwxr-xr-x | manage.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -195,7 +195,7 @@ def main() -> None: # Pass any others directly to standard management commands else: - _static_build = "distill" in sys.argv[1] + _static_build = len(sys.argv) > 1 and "distill" in sys.argv[1] if _static_build: # Build a static version of the site with no databases and API support |