summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2009-03-31 16:57:46 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2009-03-31 16:57:46 +0000
commit7af2b2dcea3aad129a25d19978345264698c256d (patch)
treec20237482a416a65ba3ae1b2d48287ede5cd207d
parent86d772bb2ae3b8e75a47d1f9e89ef0a5320a6bfc (diff)
Fixed #10018 -- Fixed typo in `BaseCommand` docstring, patch from dswistowski.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10267 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py
index da795490ce..b5efdbc108 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