From ebe77984c6007dd6a8c91503722ea5f11e150e9d Mon Sep 17 00:00:00 2001 From: Kassem Sandarusi Date: Thu, 9 Jan 2025 18:44:25 -0600 Subject: [PATCH] fix spacing --- main.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/main.go b/main.go index ea4b93f..c6906fe 100644 --- a/main.go +++ b/main.go @@ -531,9 +531,9 @@ func processFile( contentHash := getSHA1Hash(html) log.Debugf( - nil, - "content hash: %s", - contentHash, + nil, + "content hash: %s", + contentHash, ) versionPattern := `\[v([a-f0-9]{40})]$` @@ -543,16 +543,16 @@ func processFile( if len(matches) > 1 { log.Debugf( - nil, - "previous content hash: %s", - matches[1], + nil, + "previous content hash: %s", + matches[1], ) if matches[1] == contentHash { log.Infof( - nil, - "page %q is already up to date", - target.Title, + nil, + "page %q is already up to date", + target.Title, ) shouldUpdatePage = false }