瀏覽代碼

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

fix: fix formatting of error message that occurs on AUR errors
Joaquim Monteiro 2 年之前
父節點
當前提交
490ebe4f7f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/dep/dep_graph.go

+ 1 - 1
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)
 			}
 		}