src/manage.py
author durandn
Thu, 18 Aug 2016 15:26:21 +0200
changeset 138 2c2d394904db
parent 13 99224989b67b
permissions -rw-r--r--
corrected error with metacategories, fixed image import command to import metacategories with new collection

#!/usr/bin/env python
import os
import sys

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

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)