diff options
| author | Aymeric Augustin | 2013-10-14 22:46:30 +0200 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-10-14 23:30:04 +0200 | 
| commit | 10520905180387d0c51eb32907e53b79f4030190 (patch) | |
| tree | 9bda601f7d1f8e955021995ce4b7e391d6c69eb0 /example/manage.py | |
| parent | 5dd6de619b7b4fa5212c79f60a59e6d207ca5c6a (diff) | |
| download | django-debug-toolbar-10520905180387d0c51eb32907e53b79f4030190.tar.bz2 | |
Update the example app with a modern project template.
Diffstat (limited to 'example/manage.py')
| -rwxr-xr-x | example/manage.py | 15 | 
1 files changed, 7 insertions, 8 deletions
| diff --git a/example/manage.py b/example/manage.py index 5e78ea9..2605e37 100755 --- a/example/manage.py +++ b/example/manage.py @@ -1,11 +1,10 @@  #!/usr/bin/env python -from django.core.management import execute_manager -try: -    import settings # Assumed to be in the same directory. -except ImportError: -    import sys -    sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__) -    sys.exit(1) +import os +import sys  if __name__ == "__main__": -    execute_manager(settings) +    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "example.settings") + +    from django.core.management import execute_from_command_line + +    execute_from_command_line(sys.argv) | 
