1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 23:20:51 +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

@@ -781,7 +781,7 @@ def modify_token(request, repo_id):
return HttpResponseRedirect(reverse('repo', args=[repo_id]))
@login_required
def remove_repo(request, repo_id):
def repo_remove(request, repo_id):
repo = get_repo(repo_id)
if not repo:
return render_error(request, _(u'Library not exists'))