From 943f45e6d2fb7b67c53b8a1aa642dfb3309bffd7 Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Mon, 10 Jun 2013 20:12:08 -0700 Subject: [PATCH] Use NotImplementedError as suggested by wking. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 734c0fe8..45d204fd 100755 --- a/setup.py +++ b/setup.py @@ -35,9 +35,7 @@ tag = '{0}-{1}'.format(package_name, __version__) if _os.path.sep != '/': - print("ERROR: This system does not appear to be a 'POSIX' system.") - print("Catalyst is meant to install and run on a 'GENTOO' system only.") - sys.exit(2) + raise NotImplementedError('Non-POSIX paths are not supported') def files(root, target): """Iterate through all the file paths under `root` -- 2.26.2