Skip to content

Commit d94ad7c

Browse files
author
Josh Owen
committed
updated docs
1 parent 3a02bd8 commit d94ad7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ The recommended way to install django-url-robots is with `pip <http://pypi.pytho
2525
3. Add url_robots view to your root URLconf::
2626

2727
urlpatterns += [
28-
url(r'^robots\.txt$', robots.views.robots_txt),
28+
url(r'^robots\.txt$', url_robots.views.robots_txt),
2929
]
3030

31-
4. Describe rules by boolean keyword argument ``robots_allow`` using for it ``robots.utils.url`` instead ``django.conf.urls.url``::
31+
4. Describe rules by boolean keyword argument ``robots_allow`` using for it ``url_robots.utils.url`` instead ``django.conf.urls.url``::
3232

3333
from url_robots.utils import url
3434
@@ -60,7 +60,7 @@ urls.py::
6060
from django.conf.urls import include
6161

6262
urlpatterns = [
63-
url(r'^profile', include('robots.tests.urls_profile')),
63+
url(r'^profile', include('url_robots.tests.urls_profile')),
6464
]
6565

6666
urls_profile.py::

0 commit comments

Comments
 (0)