diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-12-12 22:56:52 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-12-12 22:56:52 +0000 |
| commit | 8dfd3dfd4907bf1083b4ed22da78fb3c1ff8787b (patch) | |
| tree | ccc260ff9f68a711790c26c13e4ade89f4a7cba5 | |
| parent | d0257a1558524158379bc2bf6bef2bc2a8811840 (diff) | |
Fixed #14805 -- Capitalize "Google" in sitemaps docs. Thanks, Adam.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14884 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/sitemaps/management/commands/ping_google.py | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/sitemaps.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/sitemaps/management/commands/ping_google.py b/django/contrib/sitemaps/management/commands/ping_google.py index afff04b39c..7fa1690a14 100644 --- a/django/contrib/sitemaps/management/commands/ping_google.py +++ b/django/contrib/sitemaps/management/commands/ping_google.py @@ -3,7 +3,7 @@ from django.contrib.sitemaps import ping_google 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): if len(args) == 1: diff --git a/docs/ref/contrib/sitemaps.txt b/docs/ref/contrib/sitemaps.txt index a9b1d08f66..ca6223a6f5 100644 --- a/docs/ref/contrib/sitemaps.txt +++ b/docs/ref/contrib/sitemaps.txt @@ -368,6 +368,6 @@ Pinging Google via `manage.py` .. versionadded:: 1.0 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] |
