[1.0.X]: Fixed #10018 -- Fixed typo in `BaseCommand` docstring, patch from dswistowski.

Backport of r10267 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10268 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2009-03-31 16:58:24 +00:00
parent 24a359f078
commit a352bf2145
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class BaseCommand(object):
output and, if the command is intended to produce a block of
SQL statements, will be wrapped in ``BEGIN`` and ``COMMIT``.
4. If ``handle()`` raised a ``ComandError``, ``execute()`` will
4. If ``handle()`` raised a ``CommandError``, ``execute()`` will
instead print an error message to ``stderr``.
Thus, the ``handle()`` method is typically the starting point for