diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2007-08-18 04:54:08 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2007-08-18 04:54:08 +0000 |
| commit | 7fc5a3b2d256d6e87fb7fcfeba5a885aa1a45e67 (patch) | |
| tree | 3701b63774081e060f9cb1f58d960220924950a0 | |
| parent | 6ad0a0188741f80c6dafef3aec62c3b2c46b7812 (diff) | |
Finished a sentence that didn't get committed in [5923].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5924 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/management/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py index 8fa583707e..affdb65c20 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -22,7 +22,7 @@ def load_command_class(module, name): """ Given a command name, returns the Command class instance. Raises Raises ImportError if a command module doesn't exist, or AttributeError - if a command module doesn't include . + if a command module doesn't contain a Command instance. """ # Let any errors propogate. return getattr(__import__('%s.management.commands.%s' % (module, name), {}, {}, ['Command']), 'Command')() |
