From 14d2322f470241d673e5fe8c67b14bfdbd0d8100 Mon Sep 17 00:00:00 2001 From: Christoph Groth <christoph.groth@cea.fr> Date: Sun, 25 Oct 2015 15:45:31 +0100 Subject: [PATCH] setup.py: fix error in code showing an error message --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b1436a4f..cb9158a3 100755 --- a/setup.py +++ b/setup.py @@ -355,7 +355,7 @@ def complain_cython_unavailable(): ver = '.'.join(str(e) for e in REQUIRED_CYTHON_VERSION) print(msg.format(ver), file=sys.stderr) else: - print("Run setup.py without {}.".format(NO_CYTHON_OPTION), + print("Run setup.py with the {} option.".format(CYTHON_OPTION), file=sys.stderr) -- GitLab