From: James Mills <1290234+prologic@users.noreply.github.com> Date: Sat, 18 Mar 2023 03:26:16 +0000 (+1000) Subject: Fix tests X-Git-Tag: 0.2.0~5 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=2bbe9caa0b35f24ef461aa64b8197a7d65e6a558;p=aya.git Fix tests --- diff --git a/main.go b/main.go index c0c7dd4..db1fb5c 100644 --- a/main.go +++ b/main.go @@ -607,7 +607,7 @@ func init() { func ParseIgnoreFile(fn string) *ignore.GitIgnore { obj, err := ignore.CompileIgnoreFile(ZSIGNORE) if err != nil { - log.WithError(err).Warnf("error parsing .zsignore: % (using defaults)s", fn) + log.WithError(err).Warnf("error parsing .zsignore: %s (using defaults)s", fn) return ignore.CompileIgnoreLines(DefaultIgnore) }