From 110cb362141c3a94ab5da7ebf3acf7823b2232ac Mon Sep 17 00:00:00 2001 From: niubility000 <76441520+niubility000@users.noreply.github.com> Date: Tue, 27 Feb 2024 09:24:37 +0800 Subject: [PATCH] fix: change two default values --- cmd/utils.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/utils.go b/cmd/utils.go index 8c917e13..f070d54b 100644 --- a/cmd/utils.go +++ b/cmd/utils.go @@ -102,7 +102,8 @@ func python(fn pythonFunc, cfg pythonConfig) cobraFunc { } else if !exists && !cfg.noDB { log.Println(absPath + " does not exist. initialing...") } - log.Println("Using database: " + absPath ) + + log.Println("Using database: " + absPath) data.hadDB = exists db, err := storm.Open(path) checkErr(err)