Author: russellm
Date: 2007-09-21 12:54:15 -0500 (Fri, 21 Sep 2007)
New Revision: 6403
Modified:
django/trunk/django/core/management/__init__.py
Log:
Fixed misleading comment from [6402].
Modified: django/trunk/django/core/management/__init__.py
===================================================================
--- django/trunk/django/core/management/__init__.py 2007-09-21 17:52:36 UTC
(rev 6402)
+++ django/trunk/django/core/management/__init__.py 2007-09-21 17:54:15 UTC
(rev 6403)
@@ -168,7 +168,7 @@
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)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---