1
0
mirror of https://github.com/django/django.git synced 2025-07-05 02:09:13 +00:00

[1.2.X] Fixed #14805 -- Capitalize "Google" in sitemaps docs. Thanks, Adam.

Backport from trunk (r14884).

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14905 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2010-12-13 13:56:38 +00:00
parent 33e7a8214b
commit 69edfc7531
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from django.contrib.sitemaps import ping_google
class Command(BaseCommand): class Command(BaseCommand):
help = "Ping google with an updated sitemap, pass optional url of sitemap" help = "Ping Google with an updated sitemap, pass optional url of sitemap"
def execute(self, *args, **options): def execute(self, *args, **options):
if len(args) == 1: if len(args) == 1:

View File

@ -346,6 +346,6 @@ Pinging Google via `manage.py`
.. versionadded:: 1.0 .. versionadded:: 1.0
Once the sitemaps application is added to your project, you may also Once the sitemaps application is added to your project, you may also
ping the Google server's through the command line manage.py interface:: ping Google using the ``ping_google`` management command::
python manage.py ping_google [/sitemap.xml] python manage.py ping_google [/sitemap.xml]