From ef5a926c5268367b9896da055466218622c9cfdb Mon Sep 17 00:00:00 2001 From: Tim Bishop Date: Sun, 21 Mar 2004 13:37:03 +0000 Subject: [PATCH] sys.exit, not exit. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fdd52a1..5be7278 100755 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ sys.exit("Failed to get cflags: " + cflags[1]) if libs[0] != 0: - exit("Failed to get libs: " + libs[1]) + sys.exit("Failed to get libs: " + libs[1]) # setup information setup( name = "pystatgrab",