mirror of
https://github.com/Hopiu/django.git
synced 2026-05-04 13:44:44 +00:00
Improve error message for missing migrations in an app
This commit is contained in:
parent
c755c8daa2
commit
1e5c01c26e
1 changed files with 5 additions and 2 deletions
|
|
@ -150,8 +150,11 @@ class MigrationLoader(object):
|
|||
# so we're fine.
|
||||
return
|
||||
if key[0] in self.migrated_apps:
|
||||
return list(self.graph.root_nodes(key[0]))[0]
|
||||
raise ValueError("Dependency on unknown app %s" % key[0])
|
||||
try:
|
||||
return list(self.graph.root_nodes(key[0]))[0]
|
||||
except IndexError:
|
||||
raise ValueError("Dependency on app with no migrations: %s" % key[0])
|
||||
raise ValueError("Dependency on unknown app: %s" % key[0])
|
||||
|
||||
def build_graph(self):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue