fix json_encode with python console

This commit is contained in:
ThomasV 2015-11-09 16:09:57 +01:00
parent 1abc5412cd
commit 55fafc35c1
1 changed files with 1 additions and 2 deletions

View File

@ -213,10 +213,9 @@ class Console(QtGui.QPlainTextEdit):
try:
# eval is generally considered bad practice. use it wisely!
result = eval(command, self.namespace, self.namespace)
result = util.json_encode(result)
if result != None:
if self.is_json:
util.print_msg(result)
util.print_msg(util.json_encode(result))
else:
self.appendPlainText(repr(result))
except SyntaxError: