강의

멘토링

커뮤니티

Inflearn Community Q&A

polariskth2106's profile image
polariskth2106

asked

Getting Started with Programming: Introduction to Python (Inflearn Original)

파이썬 처음 배우는 사람인데 세팅값에 문제가 있는지.. 오류가 자꾸 뜨네요

Written on

·

307

0

ctrl+shift+b 로 실행후 하단에 뜬 창을 엑스박스 누르면 이 오류가 생기는데 어떻게 해결해야할까요?

python

Answer 2

0

저도 동일한 현상이 발생하는데 아래 주신 경로는 어떻게 들어가면 되나요? 
못 찾겠어요..ㅠ
.atom\packages\script\node_modules\atom-message-panel\lib\MessagePanelView.js 

0

안녕하세요.

임시적인 해결책으로 .atom\packages\script\node_modules\atom-message-panel\lib\MessagePanelView.js 파일의 187번째 줄을

MessagePanelView.prototype.remove = function (index) {
  this.messages.splice(-index, 1);
  this.body.children()[index].remove();
};

에서

MessagePanelView.prototype.remove = function (index) {
  $('.native-key-bindings.script-view').remove();
};

로 변경해보시길 바랍니다.

감사합니다 :)

polariskth2106's profile image
polariskth2106

asked

Ask a question