Skip to content

Commit

Permalink
Fix Workspace Symbols path on Windows. (#1066)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrHorn authored and DonJayamanne committed Jul 3, 2017
1 parent 0a109bc commit cbbc879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/workspaceSymbols/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class Generator implements vscode.Disposable {
}

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

Expand Down

0 comments on commit cbbc879

Please sign in to comment.