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.
2 parents 744b4bd + a7da015 commit aeeda38Copy full SHA for aeeda38
pythonx/vdebug/dbgp.py
@@ -360,8 +360,11 @@ def context_names(self):
360
def property_get(self, name):
361
"""Get a property.
362
"""
363
- return self.send_cmd('property_get', '-n %s -d 0' % name,
364
- ContextGetResponse)
+ return self.send_cmd(
+ 'property_get',
365
+ '-n "%s" -d 0' % name.replace("\\", "\\\\").replace("\"", "\\\""),
366
+ ContextGetResponse
367
+ )
368
369
def detach(self):
370
"""Tell the debugger to detach itself from this
0 commit comments