Skip to content

Commit 1caf4b1

Browse files
committed
improving error message
1 parent d16a057 commit 1caf4b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wolframclient/cli/commands/start_externalevaluate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def handle(self, port=None, installpath=None, **opts):
2424
try:
2525
zmq.Context
2626
except ImportError as e:
27-
print("%s. Please install zmq. https://zeromq.org/languages/python/" % e, file=sys.stderr)
27+
print("Error importing zmq: %s. Please install zmq. https://zeromq.org/languages/python/" % e, file=sys.stderr)
2828
sys.stderr.flush()
2929
sys.exit(1)
3030

0 commit comments

Comments
 (0)