summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-08-12 12:27:24 -0400
committerTim Graham <timograham@gmail.com>2014-08-12 12:27:45 -0400
commitdb1cfbc1a9d8bafdf14ac2cda321b15f9a77e3d2 (patch)
treee2f986381068018310844fbb7c19deb6c5e7bc11
parentd07394a51e1194b5bf8edeb1c6127e6c8df197a4 (diff)
[1.6.x] Fixed indentation typo in docs/ref/contrib/sitemaps.txt.
Backport of 2003cb23d4 from master
-rw-r--r--docs/ref/contrib/sitemaps.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/sitemaps.txt b/docs/ref/contrib/sitemaps.txt
index ebbd4798c9..8c9c18d3a5 100644
--- a/docs/ref/contrib/sitemaps.txt
+++ b/docs/ref/contrib/sitemaps.txt
@@ -476,7 +476,7 @@ that: :func:`django.contrib.sitemaps.ping_google()`.
One useful way to call :func:`ping_google` is from a model's ``save()``
method::
- from django.contrib.sitemaps import ping_google
+ from django.contrib.sitemaps import ping_google
class Entry(models.Model):
# ...