Author: russellm
Date: 2007-09-21 19:27:07 -0500 (Fri, 21 Sep 2007)
New Revision: 6404

Modified:
   django/trunk/django/core/management/__init__.py
Log:
Fixed #5566 -- Fixed typo from [6042]. Thanks to [EMAIL PROTECTED] and mir for 
bringing attention to this.


Modified: django/trunk/django/core/management/__init__.py
===================================================================
--- django/trunk/django/core/management/__init__.py     2007-09-21 17:54:15 UTC 
(rev 6403)
+++ django/trunk/django/core/management/__init__.py     2007-09-22 00:27:07 UTC 
(rev 6404)
@@ -117,7 +117,7 @@
             # If the command is already loaded, use it directly.
             klass = app_name
         else:
-            klass = load_command_class(app_name, subcommand)
+            klass = load_command_class(app_name, name)
     except KeyError:
         raise CommandError, "Unknown command: %r" % name
     return klass.execute(*args, **options)


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to