ImportError: cannot import name 'update_contenttypes'
장고에서 update_contenttypes 임포트 에러 발생시
django.contrib.contenttype.apps.py
를 수정합니다.
django 1.11
버전에서 생기는 오류 인것으로 보입니다.
from .management import (
inject_rename_contenttypes_operations,
# update_contenttypes,
create_contenttypes,
)
기존의 update_contenttypes
대신 create_contenttypes
로 수정합니다.
def ready(self):
pre_migrate.connect(inject_rename_contenttypes_operations, sender=self)
# post_migrate.connect(update_contenttypes)
post_migrate.connect(create_contenttypes)
checks.register(check_generic_foreign_keys, checks.Tags.models)
마찬가지로, update_contenttypes
대신 create_contenttypes
로 수정합니다.
출처
'Programming > Python' 카테고리의 다른 글
Jupyter 외부 접속 설정 (2) | 2017.12.22 |
---|---|
[django] 장고의 설계 원칙 (0) | 2017.06.30 |
django-celery 장고에 스케쥴 설정 (0) | 2017.05.14 |
책. Two Scoops of Django (모범 사례로 배우는 Django(장고) 테크닉) (0) | 2017.05.13 |
윈도우에 pyrebase 설치 (0) | 2017.04.19 |
댓글