match the actual two hyphen flag

This commit is contained in:
zancas 2022-06-22 09:53:17 -06:00 committed by Kris Nuttycombe
parent cc9449f905
commit a4a0fbb3c0
1 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ BASE_SCRIPTS= [
ZMQ_SCRIPTS = [
# ZMQ test can only be run if bitcoin was built with zmq-enabled.
# call rpc_tests.py with -nozmq to explicitly exclude these tests.
# call rpc_tests.py with --nozmq to explicitly exclude these tests.
"zmq_test.py"]
EXTENDED_SCRIPTS = [
@ -225,7 +225,7 @@ def main():
import zmq
zmq # Silences pyflakes
except ImportError:
print("ERROR: \"import zmq\" failed. Use -nozmq to run without the ZMQ tests."
print("ERROR: \"import zmq\" failed. Use --nozmq to run without the ZMQ tests."
"To run zmq tests, see dependency info in /qa/README.md.")
raise