barbacompta/manage.py

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

11 lines
254 B
Python
Raw Normal View History

#!/usr/bin/env python3
import os
import sys
2013-01-24 15:35:59 +01:00
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "eo_gestion.settings")
2014-01-15 13:36:05 +01:00
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)