File: manage.py

package info (click to toggle)
mssql-django 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 612 kB
  • sloc: python: 4,967; sh: 105; makefile: 7
file content (14 lines) | stat: -rwxr-xr-x 325 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

# Copyright (c) Microsoft Corporation.
# Licensed under the BSD license.

import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "testapp.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)