Ticket #14889: curr_dir--csrf_migration_helper.patch

File curr_dir--csrf_migration_helper.patch, 436 bytes (added by frankvillasenor, 13 years ago)

patch file with the additions I described in the ticket.

  • csrf_migration_helper.py

     
    353353            sys.exit(1)
    354354    else:
    355355        os.environ["DJANGO_SETTINGS_MODULE"] = settings
     356        sys.path.append( "." ) #added so that the Django settings module will look in the current directory.
    356357
    357358    main(args)
Back to Top