Skip to content

Commit

Permalink
Print all bad apps passed to makemigrations, not just the first one.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Aug 10, 2013
1 parent 7970d97 commit 3f1f91f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions django/core/management/commands/makemigrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,16 @@ def handle(self, *app_labels, **options):

# Make sure the app they asked for exists
app_labels = set(app_labels)
bad_app_labels = set()
for app_label in app_labels:
try:
cache.get_app(app_label)
except ImproperlyConfigured:
self.stderr.write("The app you specified - '%s' - could not be found. Is it in INSTALLED_APPS?" % app_label)
sys.exit(2)
bad_app_labels.add(app_label)
if bad_app_labels:
for app_label in bad_app_labels:
self.stderr.write("App '%s' could not be found. Is it in INSTALLED_APPS?" % app_label)
sys.exit(2)

# Load the current graph state
loader = MigrationLoader(connections["default"])
Expand Down

0 comments on commit 3f1f91f

Please sign in to comment.