Skip to content

Commit 1785b81

Browse files
Copiloteleanorjboyd
andcommitted
Fix: Update error message to correctly reference venv environment instead of conda
Co-authored-by: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com>
1 parent c471084 commit 1785b81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/managers/builtin/venvUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export async function findVirtualEnvironments(
180180

181181
for (const e of envs) {
182182
if (!(e.prefix && e.executable && e.version)) {
183-
log.warn(`Invalid conda environment: ${JSON.stringify(e)}`);
183+
log.warn(`Invalid venv environment: ${JSON.stringify(e)}`);
184184
continue;
185185
}
186186

0 commit comments

Comments
 (0)