Skip to content

Commit 063dd8d

Browse files
committed
indent fix
1 parent df78bed commit 063dd8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/tumblelog/tumblelog/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
url(r'^$', PostIndexView.as_view(), name="post_index"),
2222
url(r'^new/$', AddPostView.as_view(), name="post_new"),
2323
url(r'^new/(?P<post_type>(post|video|image|quote|music))/$',
24-
AddPostView.as_view(), name="post_new"),
24+
AddPostView.as_view(), name="post_new"),
2525
url(r'^admin/', include(mongo_admin.site.urls)),
2626
url(r'^image-file/(?P<slug>[a-zA-Z0-9-]+)/', ImageFileView.as_view(),
27-
name="image_file"),
27+
name="image_file"),
2828
url(r'^(?P<slug>[a-zA-Z0-9-]+)/', include(post_patterns)),
2929
]

0 commit comments

Comments
 (0)