diff options
| author | 2022-11-19 13:57:37 +0000 | |
|---|---|---|
| committer | 2022-11-19 13:57:37 +0000 | |
| commit | 182b7e5c2479ea7c35191e99656f82642d8aa24c (patch) | |
| tree | 410130705e2c134b4823195fdf405bc3806968ea | |
| parent | Merge pull request #796 from python-discord/fix-verification-ssl (diff) | |
Fix error when invoking manage.py with no commands
| -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 | 
