Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8577a73

Browse files
committed
fix typo
1 parent 2b4be9f commit 8577a73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/workspaceSymbols/generator.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class Generator implements vscode.Disposable {
1919
this.disposables.forEach(d => d.dispose());
2020
}
2121

22-
private buildCmdArgsg(): string[] {
22+
private buildCmdArgs(): string[] {
2323
const optionsFile = this.optionsFile.indexOf(' ') > 0 ? `"${this.optionsFile}"` : this.optionsFile;
2424
const exclusions = pythonSettings.workspaceSymbols.exclusionPatterns;
2525
const excludes = exclusions.length === 0 ? [] : exclusions.map(pattern => `--exclude=${pattern}`);
@@ -34,7 +34,7 @@ export class Generator implements vscode.Disposable {
3434

3535
private generateTags(outputFile: string, source: { directory?: string, file?: string }): Promise<any> {
3636
const cmd = pythonSettings.workspaceSymbols.ctagsPath;
37-
const args = this.buildCmdArgsg();
37+
const args = this.buildCmdArgs();
3838
if (source.file && source.file.length > 0) {
3939
source.directory = path.dirname(source.file);
4040
}

0 commit comments

Comments
 (0)