Skip to content

Commit f5c68d2

Browse files
authored
Add quotes around message coming from pipenv
1 parent 41892ae commit f5c68d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/interpreter/locators/services/pipEnvService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class PipEnvService extends CacheableLocatorService {
109109
console.error(error);
110110
const errorMessage = error.message || error;
111111
const appShell = this.serviceContainer.get<IApplicationShell>(IApplicationShell);
112-
appShell.showWarningMessage(`Workspace contains pipfile but attempt to run 'pipenv --venv' failed with ${errorMessage}. Make sure pipenv is on the PATH.`);
112+
appShell.showWarningMessage(`Workspace contains pipfile but attempt to run 'pipenv --venv' failed with '${errorMessage}'. Make sure pipenv is on the PATH.`);
113113
}
114114
}
115115
}

0 commit comments

Comments
 (0)