File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/client/pythonEnvironments/creation/provider Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ async function createCondaEnv(
106
106
out . subscribe (
107
107
( value ) => {
108
108
const output = splitLines ( value . out ) . join ( '\r\n' ) ;
109
- traceLog ( output ) ;
109
+ traceLog ( output . trimEnd ( ) ) ;
110
110
if ( output . includes ( CONDA_ENV_CREATED_MARKER ) || output . includes ( CONDA_ENV_EXISTING_MARKER ) ) {
111
111
condaEnvPath = getCondaEnvFromOutput ( output ) ;
112
112
}
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ async function createVenv(
123
123
out . subscribe (
124
124
( value ) => {
125
125
const output = value . out . split ( / \r ? \n / g) . join ( os . EOL ) ;
126
- traceLog ( output ) ;
126
+ traceLog ( output . trimEnd ( ) ) ;
127
127
if ( output . includes ( VENV_CREATED_MARKER ) || output . includes ( VENV_EXISTING_MARKER ) ) {
128
128
venvPath = getVenvFromOutput ( output ) ;
129
129
}
You can’t perform that action at this time.
0 commit comments