Browse Source
qt console: failed to print certain objects with custom __eq__
regtest_lnd
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/gui/qt/console.py
|
|
@ -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: |
|
|
|