We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c47bc2a commit 08ac9acCopy full SHA for 08ac9ac
lib/python-debugger-view.coffee
@@ -128,6 +128,8 @@ class PythonDebuggerView extends View
128
stopApp: ->
129
@backendDebugger?.stdin.write("\nexit()\n")
130
@backendDebugger = null
131
+ @debuggedFileName = null
132
+ @debuggedFileArgs = []
133
console.log "debugger stopped"
134
135
clearOutput: ->
@@ -149,7 +151,7 @@ class PythonDebuggerView extends View
149
151
!@debuggedFileName
150
152
153
askForPaths: ->
- @addOutput("To use a different entry point, set file to debug using e=fileName")
154
+ @addOutput("To set or change the entry point, set file to debug using e=fileName")
155
156
initialize: (breakpointStore) ->
157
@breakpointStore = breakpointStore
0 commit comments