Browse Source

remove percent from popularity

nycex 4 years atrás
parent
commit
321834de4c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      print.go

+ 1 - 1
print.go

@@ -85,7 +85,7 @@ func (q aurQuery) printSearch(start int) {
 		toprint += bold(colorHash("aur")) + "/" + bold(q[i].Name) +
 			" " + cyan(q[i].Version) +
 			bold(" (+"+strconv.Itoa(q[i].NumVotes)) +
-			" " + bold(strconv.FormatFloat(q[i].Popularity, 'f', 2, 64)+"%) ")
+			" " + bold(strconv.FormatFloat(q[i].Popularity, 'f', 2, 64)+") ")
 
 		if q[i].Maintainer == "" {
 			toprint += bold(red(gotext.Get("(Orphaned)"))) + " "