diff --git a/CHANGES b/CHANGES index f9487b8..701b582 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,11 @@ Version History =============== + +Version 0.7.14 (unreleased) +--------------------------- +* Updated installation docs (PR #190, thanks @AuHau) + + Version 0.7.13 -------------- * Search in comments, too (PR #174, thanks @torchingloom) diff --git a/docs/installation.rst b/docs/installation.rst index 83ebaeb..74f2413 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -16,15 +16,10 @@ Install Rosetta from django.conf import settings if 'rosetta' in settings.INSTALLED_APPS: - urlpatterns += patterns('', - url(r'^rosetta/', include('rosetta.urls')), - ) - - # or in Django 1.10 and greater urlpatterns += [ url(r'^rosetta/', include('rosetta.urls')) ] - + Note: you can use whatever you wish as the URL prefix.