# HG changeset patch # User Madhusudan.C.S # Date 1295044590 -19800 # Node ID f11529f0e48215da987181bbf189aabeba1912d2 # Parent 09e381a7c2c3122da9de0c8b8aa4b98f1eae0134 Fix styling issue in URLConf. diff -r 09e381a7c2c3 -r f11529f0e482 pytask/profile/urls.py --- a/pytask/profile/urls.py Sat Jan 15 03:59:15 2011 +0530 +++ b/pytask/profile/urls.py Sat Jan 15 04:06:30 2011 +0530 @@ -5,14 +5,14 @@ urlpatterns = patterns('pytask.profile.views', url(r'^view/$', 'view_profile', name='view_profile'), url(r'^edit/$', 'edit_profile', name='edit_profile'), - url(r'^notf/browse/$', 'browse_notifications', - name='edit_profile'), - url(r'^notf/view/(?P\d+)$', 'view_notification', - name='view_notification'), - url(r'^notf/del/(?P\d+)$', 'delete_notification', - name='delete_notification'), - url(r'^notf/unr/(?P\d+)$', 'unread_notification', - name='unread_notification'), + url(r'^notification/browse/$', 'browse_notifications', + name='browse_notifications'), + url(r'^notification/view/(?P\d+)$', + 'view_notification', name='view_notification'), + url(r'^notification/delete/(?P\d+)$', + 'delete_notification', name='delete_notification'), + url(r'^notification/unread/(?P\d+)$', + 'unread_notification', name='unread_notification'), url(r'^user/view/(?P\d+)$', 'view_user', name='view_user'), )