Skip to content

Commit

Permalink
Merge pull request #57 from riastradh/riastradh-20240414-issue56-pars…
Browse files Browse the repository at this point in the history
…efaileddeps

pages/bulktracker.go: Parse failed_deps with spaces, not commas.
  • Loading branch information
bsiegert authored Apr 21, 2024
2 parents 27f8279 + 7f8e8d6 commit a3c3ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/bulktracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func (p *PkgDetails) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if res.FailedDeps == "" {
return
}
failedDeps := strings.Split(res.FailedDeps, ",")
failedDeps := strings.Split(res.FailedDeps, " ")
fmt.Fprintf(w, "<h2>This package has %d failed dependencies</h2>", len(failedDeps))
templates.TableBegin(w, "Location", "Package Name", "Status", "Breaks")

Expand Down

0 comments on commit a3c3ecd

Please sign in to comment.