bug fixed

This commit is contained in:
Lunny Xiao 2014-03-27 14:00:23 +08:00
parent dd6246877d
commit bc1abb010d
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func GetBranches(userName, reposName string) ([]string, error) {
brs := make([]string, len(refs))
for i, ref := range refs {
brs[i] = ref.Name
brs[i] = ref.BranchName()
}
return brs, nil
}