1
0
mirror of https://github.com/django/django.git synced 2024-12-23 09:36:06 +00:00

Fixed indentation typo in docs/ref/contrib/sitemaps.txt.

This commit is contained in:
Tim Graham 2014-08-12 12:27:24 -04:00
parent f7dba61881
commit 2003cb23d4

View File

@ -501,7 +501,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):
# ...