PEP8 cleanups, E501.

This commit is contained in:
Roberto Rosario
2015-07-23 04:05:29 -04:00
parent 0a0a92116e
commit 3b728328ad
48 changed files with 613 additions and 176 deletions

View File

@@ -4,8 +4,20 @@ from django.conf.urls import patterns, url
urlpatterns = patterns(
'document_comments.views',
url(r'^comment/(?P<comment_id>\d+)/delete/$', 'comment_delete', name='comment_delete'),
url(r'^comment/multiple/delete/$', 'comment_multiple_delete', name='comment_multiple_delete'),
url(r'^(?P<document_id>\d+)/comment/add/$', 'comment_add', name='comment_add'),
url(r'^(?P<document_id>\d+)/comment/list/$', 'comments_for_document', name='comments_for_document'),
url(
r'^comment/(?P<comment_id>\d+)/delete/$', 'comment_delete',
name='comment_delete'
),
url(
r'^comment/multiple/delete/$', 'comment_multiple_delete',
name='comment_multiple_delete'
),
url(
r'^(?P<document_id>\d+)/comment/add/$', 'comment_add',
name='comment_add'
),
url(
r'^(?P<document_id>\d+)/comment/list/$', 'comments_for_document',
name='comments_for_document'
),
)