Skip to content
Snippets Groups Projects
Commit 3ba7325b authored by hjk's avatar hjk
Browse files

debugger: fix output of python 'dict' items when children are not expanded

parent ab0e0b1f
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,8 @@ class qdebug:
self.put("children=[")
self.dumpValue(k, "key", "%s.%d.k" % (iname, i))
self.dumpValue(v, "value", "%s.%d.v" % (iname, i))
self.put("]},")
self.put("]")
self.put("},")
i += 1
self.put("]")
elif tt == "class":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment