Fix formatting of error message that occurs on AUR errors (#2154)

fix: fix formatting of error message that occurs on AUR errors
This commit is contained in:
Joaquim Monteiro 2023-05-08 22:43:50 +01:00 committed by GitHub
parent 4dfee1f82f
commit 490ebe4f7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -373,7 +373,7 @@ func (g *Grapher) GraphFromAUR(ctx context.Context,
var errA error
aurPkgs, errA = g.aurClient.Get(ctx, &aurc.Query{By: aurc.Provides, Needles: []string{target}, Contains: true})
if errA != nil {
g.logger.Errorln(gotext.Get("Failed to find AUR package for"), target, ":", errA)
g.logger.Errorln(gotext.Get("Failed to find AUR package for"), " ", target, ":", errA)
}
}