diff options
author | 2022-12-04 13:19:08 +0300 | |
---|---|---|
committer | 2022-12-04 13:19:08 +0300 | |
commit | 92a9669ee06ea6341082aaceb6f2d2ad5585d007 (patch) | |
tree | f45b37e10e0e59822a795d5a9a2e0bc403501a23 /manage.py | |
parent | Update pydis_site/apps/content/resources/guides/python-guides/docker-hosting-... (diff) | |
parent | Rename vps_services.md to vps-services.md (#808) (diff) |
Merge branch 'python-discord:main' into main
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 |