hobo/manage.py

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

11 lines
248 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
2014-03-24 19:16:09 +01:00
import os
import sys
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'hobo.settings')
2014-03-24 19:16:09 +01:00
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)