File tree Expand file tree Collapse file tree
src/client/workspaceSymbols Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments