Fix small variable name error.

This commit is contained in:
Solderpunk 2023-02-27 08:35:11 +01:00
parent d3d415b612
commit 81b4f1dcc0
1 changed files with 1 additions and 1 deletions

View File

@ -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