Commit a1d6fdaf authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

[1.0.X] Fixed #9675: added note about upgrading the URLconf to the comment...

[1.0.X] Fixed #9675: added note about upgrading the URLconf to the comment upgrade guide. Backport of [10746] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10748 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent da4ddabb
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -26,6 +26,15 @@ The main changes from the old system are:
      new comment, and ``{% render_comment_form %}``, which renders said form
      using the ``comments/form.html`` template.

    * The way comments are include in your URLconf have changed; you'll need to
      replace::

            (r'^comments/', include('django.contrib.comments.urls.comments')),

      with::

            (r'^comments/', include('django.contrib.comments.urls')),

Upgrading data
--------------