Skip to content

Commit

Permalink
Add clarifying comment
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Aug 10, 2013
1 parent 3f1f91f commit d5a7a3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django/core/management/commands/makemigrations.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def handle(self, *app_labels, **options):
self.stderr.write("App '%s' could not be found. Is it in INSTALLED_APPS?" % app_label) self.stderr.write("App '%s' could not be found. Is it in INSTALLED_APPS?" % app_label)
sys.exit(2) sys.exit(2)


# Load the current graph state # Load the current graph state. Takes a connection, but it's not used
# (makemigrations doesn't look at the database state).
loader = MigrationLoader(connections["default"]) loader = MigrationLoader(connections["default"])


# Detect changes # Detect changes
Expand Down

0 comments on commit d5a7a3d

Please sign in to comment.