From 81b4f1dcc0e460a16c298b7a66dff0ecd2561f97 Mon Sep 17 00:00:00 2001 From: Solderpunk Date: Mon, 27 Feb 2023 08:35:11 +0100 Subject: [PATCH] Fix small variable name error. --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index b8a8277..4f28699 100644 --- a/config.go +++ b/config.go @@ -222,7 +222,7 @@ func parseMollyFiles(path string, docBase string, config UserConfig) UserConfig continue } // If the file exists and we can read it, try to parse it - newConfig, err = readUserConfig(mollyPath, config, false) + config, err = readUserConfig(mollyPath, config, false) if err != nil { log.Println("Error parsing .molly file " + mollyPath + ": " + err.Error()) continue