summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-09-21 17:54:15 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-09-21 17:54:15 +0000
commit87d71277b8e43f7042b82aed9d4b4c77cf1ec68f (patch)
tree51cbb805817edd30ff49ef5885cbb232054ab3fc
parent901c3708fb8a2e51bddd37358f8e536282a8c266 (diff)
Fixed misleading comment from [6402].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6403 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py
index b968247647..eb7751b541 100644
--- a/django/core/management/__init__.py
+++ b/django/core/management/__init__.py
@@ -168,7 +168,7 @@ class ManagementUtility(object):
try:
app_name = get_commands(self.user_commands, self.project_directory)[subcommand]
if isinstance(app_name, BaseCommand):
- # If the app_name is already loaded, use it directly.
+ # If the command is already loaded, use it directly.
klass = app_name
else:
klass = load_command_class(app_name, subcommand)