chrono/manage.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
250 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
2016-02-13 09:56:55 +01:00
import os
import sys
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'chrono.settings')
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)