Skip to content

Commit cbbc879

Browse files
ChrHornDonJayamanne
authored andcommitted
Fix Workspace Symbols path on Windows. (#1066)
1 parent 0a109bc commit cbbc879

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client/workspaceSymbols/generator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class Generator implements vscode.Disposable {
2828
}
2929

3030
generateWorkspaceTags(): Promise<any> {
31-
const tagFile = pythonSettings.workspaceSymbols.tagFilePath;
31+
const tagFile = path.normalize(pythonSettings.workspaceSymbols.tagFilePath);
3232
return this.generateTags(tagFile, { directory: vscode.workspace.rootPath });
3333
}
3434

0 commit comments

Comments
 (0)