fix json_encode with python console
This commit is contained in:
@@ -213,10 +213,9 @@ class Console(QtGui.QPlainTextEdit):
|
|||||||
try:
|
try:
|
||||||
# eval is generally considered bad practice. use it wisely!
|
# eval is generally considered bad practice. use it wisely!
|
||||||
result = eval(command, self.namespace, self.namespace)
|
result = eval(command, self.namespace, self.namespace)
|
||||||
result = util.json_encode(result)
|
|
||||||
if result != None:
|
if result != None:
|
||||||
if self.is_json:
|
if self.is_json:
|
||||||
util.print_msg(result)
|
util.print_msg(util.json_encode(result))
|
||||||
else:
|
else:
|
||||||
self.appendPlainText(repr(result))
|
self.appendPlainText(repr(result))
|
||||||
except SyntaxError:
|
except SyntaxError:
|
||||||
|
|||||||
Reference in New Issue
Block a user