qt console: failed to print certain objects with custom __eq__

This commit is contained in:
SomberNight 2019-05-05 17:59:45 +02:00
parent f38eed2fad
commit b11cb11d95
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -252,7 +252,7 @@ class Console(QtWidgets.QPlainTextEdit):
try:
# eval is generally considered bad practice. use it wisely!
result = eval(command, self.namespace, self.namespace)
if result != None:
if result is not None:
if self.is_json:
util.print_msg(util.json_encode(result))
else: