diff options
author | 2022-11-20 13:36:37 +0000 | |
---|---|---|
committer | 2022-11-20 13:36:37 +0000 | |
commit | 7b49952105a808b866625b4fee5a2b4edecfeb6e (patch) | |
tree | d29cb4ab470e0d23f64e6b478b2e68ba6eea94aa /manage.py | |
parent | Include users with no messages in response, and simplify response format (diff) | |
parent | Merge pull request #798 from python-discord/fix-manage-py-no-args (diff) |
Merge branch 'main' into messages-in-past-n-days-endpoint
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 |