Changes between Initial Version and Version 1 of Ticket #25634


Ignore:
Timestamp:
Oct 29, 2015, 7:28:49 AM (9 years ago)
Author:
Ivan Koval
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25634 – Description

    initial v1  
    1 Migrating my project from 1.8.5 to 1.9b1 cause next traceback:
    2 
     1Migrating my project from 1.8.5 to 1.9b1 cause next traceback, when running server:
    32
    43{{{
     
    2423}}}
    2524
     25And my manage.py is pretty simple:
     26
     27{{{
     28#!/usr/bin/env python
     29import os
     30import sys
     31
     32if __name__ == "__main__":
     33    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings.base")
     34
     35    from django.core.management import execute_from_command_line
     36
     37    execute_from_command_line(sys.argv)
     38}}}
Back to Top