combo/manage.py

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

11 lines
249 B
Python
Raw Permalink Normal View History

2019-09-29 15:09:42 +02:00
#!/usr/bin/env python3
2014-12-07 14:59:41 +01:00
import os
import sys
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'combo.settings')
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)