diff options
author | 2019-09-21 12:46:52 +1000 | |
---|---|---|
committer | 2019-09-21 12:46:52 +1000 | |
commit | ffb6f5e34521678b6ca4aa488c7da248c8c65246 (patch) | |
tree | 3ba41884d82fc4db959b2b57473d3a350fdeab8b | |
parent | Revert uwsgi back to pip install. (#254) (diff) |
Add some bad stuff for lint test to pick up.
-rwxr-xr-x | manage.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,6 +3,7 @@ import os import sys + # Separate definition to ease calling this in other scripts. def main(): """Entry point for Django management script.""" @@ -14,8 +15,8 @@ def main(): "Couldn't import Django. Are you sure it's installed and " "available on your PYTHONPATH environment variable? Did you " "forget to activate a virtual environment?" - ) from exc - execute_from_command_line(sys.argv) + from exc + execute_from_command_line (sys.argv) if __name__ == '__main__': |