Skip to content

Commit

Permalink
Change how we detect
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj committed Oct 12, 2021
1 parent bf1815c commit ae56079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/browser/intellisenseStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Common, LanguageService } from '../common/utils/localize';
import { noop } from '../common/utils/misc';

export function createStatusItem(): vscode.Disposable {
if (vscode.languages.createLanguageStatusItem) {
if ('createLanguageStatusItem' in vscode.languages) {
const statusItem = vscode.languages.createLanguageStatusItem('python.projectStatus', {
language: 'python',
});
Expand Down

0 comments on commit ae56079

Please sign in to comment.