1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 22:54:11 +00:00

Fixed duplicated function name bug in removing library

This commit is contained in:
zhengxie
2012-12-06 11:28:04 +08:00
parent 9b461e1134
commit e83cff3914
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ urlpatterns = patterns('',
url(r'^repo/recycle/(?P<repo_id>[^/]+)/$', repo_recycle_view, name='repo_recycle_view'),
url(r'^repo/snapshot/view/(?P<repo_id>[^/]+)/$', repo_view_snapshot, name='repo_view_snapshot'),
(r'^repo/history/changes/(?P<repo_id>[^/]+)/$', repo_history_changes),
(r'^repo/remove/(?P<repo_id>[^/]+)/$', remove_repo),
(r'^repo/remove/(?P<repo_id>[^/]+)/$', repo_remove),
url(r'^repo/(?P<repo_id>[^/]+)/files/$', repo_view_file, name="repo_view_file"),
(r'^repo/(?P<repo_id>[^/]+)/file/edit/$', repo_file_edit),
url(r'^repo/(?P<repo_id>[^/]+)/(?P<obj_id>[^/]+)/$', repo_access_file, name='repo_access_file'),