Migration to django 1.11

This commit is contained in:
2018-04-19 01:13:05 +02:00
parent 39119f586a
commit 08de5dfe6a
4 changed files with 4 additions and 6 deletions

View File

@ -418,7 +418,7 @@ Welcome to the wiki page!
buying.save()
comptes = AccountingType(code='6', label="Comptes de charge", movement_type='DEBIT')
comptes.save()
simple = SimplifiedAccountingType(label='Je fais du simple 6', accounting_type=comptes, movement_type='DEBIT')
simple = SimplifiedAccountingType(label='Je fais du simple 6', accounting_type=comptes)
simple.save()
woenzco = Company(name="Woenzel & co")
woenzco.save()

View File

@ -31,7 +31,7 @@ from django.forms.models import modelform_factory
from django.conf import settings
from django.utils.translation import ugettext_lazy as _
from django.http import HttpResponse
from django.core.servers.basehttp import FileWrapper
from wsgiref.util import FileWrapper
from django.core.urlresolvers import reverse
from django.core.exceptions import PermissionDenied
from django import forms