From 6ac7d522e316c9924792779490f82a6f0289b456 Mon Sep 17 00:00:00 2001 From: Nusiq Date: Fri, 4 Mar 2022 22:06:25 +0100 Subject: [PATCH] needsVenv doesn't print the path to requirements.txt anymore --- regolith/filter_python.go | 1 - 1 file changed, 1 deletion(-) diff --git a/regolith/filter_python.go b/regolith/filter_python.go index 1e13d29b..a5000c23 100644 --- a/regolith/filter_python.go +++ b/regolith/filter_python.go @@ -168,7 +168,6 @@ func (f *PythonFilterDefinition) resolveVenvPath() (string, error) { } func needsVenv(filterPath string) bool { - Logger.Info(filepath.Join(filterPath, "requirements.txt")) stats, err := os.Stat(filepath.Join(filterPath, "requirements.txt")) if err == nil { return !stats.IsDir()