Moved migration exception classes to shared module

Thanks Aymeric Augustin for the review.
This commit is contained in:
Markus Holtermann 2015-05-01 20:46:07 +02:00
parent 3cb386b8c2
commit 811d7870a5
8 changed files with 71 additions and 53 deletions

View file

@ -3,8 +3,8 @@ from __future__ import unicode_literals
from unittest import skipIf
from django.db import connection, connections
from django.db.migrations.graph import NodeNotFoundError
from django.db.migrations.loader import AmbiguityError, MigrationLoader
from django.db.migrations.exceptions import AmbiguityError, NodeNotFoundError
from django.db.migrations.loader import MigrationLoader
from django.db.migrations.recorder import MigrationRecorder
from django.test import TestCase, modify_settings, override_settings
from django.utils import six