diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2009-03-31 16:58:24 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2009-03-31 16:58:24 +0000 |
| commit | a352bf2145cf204cad3a5b604142c6087442c817 (patch) | |
| tree | b7b16878d4df1912e5756f7f2ce36a6e29844246 | |
| parent | 24a359f078af3eb5a7dd7b151a74cb303557dd34 (diff) | |
[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
| -rw-r--r-- | django/core/management/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py index ac79b31c91..07713c9ec3 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -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 |
