Browse Source

print err

tags/v1.2.0-rc1
slene 12 years ago
parent
commit
16cb1e974c
2 changed files with 1 additions and 2 deletions
  1. +0
    -1
      models/git.go
  2. +1
    -1
      routers/repo/commit.go

+ 0
- 1
models/git.go View File

@@ -244,7 +244,6 @@ func GetCommitsByCommitId(userName, repoName, commitId string) (*list.List, erro
if err != nil {
return nil, err
}
fmt.Println(userName, repoName, commitId)
r, err := repo.LookupReference(commitId)
if err != nil {
return nil, err


+ 1
- 1
routers/repo/commit.go View File

@@ -37,7 +37,7 @@ func Commits(ctx *middleware.Context, params martini.Params) {
}

if err != nil {
ctx.Handle(404, "repo.Commits", nil)
ctx.Handle(404, "repo.Commits", err)
return
}



Loading…
Cancel
Save