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 37469db commit b5bf61fCopy full SHA for b5bf61f
lib/python-debugger.coffee
@@ -1,4 +1,5 @@
1
{CompositeDisposable} = require "atom"
2
+path = require "path"
3
Breakpoint = require "./breakpoint"
4
BreakpointStore = require "./breakpoint-store"
5
@@ -41,7 +42,7 @@ module.exports = PythonDebugger =
41
42
@pythonDebuggerView.destroy()
43
44
serialize: ->
- pythonDebuggerViewState: @pythonDebuggerView.serialize()
45
+ pythonDebuggerViewState: @pythonDebuggerView?.serialize()
46
47
activePath = editor?.getPath()
48
relative = atom.project.relativizePath(activePath)
0 commit comments