From 490ebe4f7fbaf3bbb7ad08bcb5b1f4e4310ee43a Mon Sep 17 00:00:00 2001 From: Joaquim Monteiro Date: Mon, 8 May 2023 22:43:50 +0100 Subject: [PATCH] Fix formatting of error message that occurs on AUR errors (#2154) fix: fix formatting of error message that occurs on AUR errors --- pkg/dep/dep_graph.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/dep/dep_graph.go b/pkg/dep/dep_graph.go index ec52a6e0..13e3752c 100644 --- a/pkg/dep/dep_graph.go +++ b/pkg/dep/dep_graph.go @@ -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) } }