From: Brian Dolbec Date: Tue, 11 Jun 2013 03:12:08 +0000 (-0700) Subject: Use NotImplementedError as suggested by wking. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=943f45e6d2fb7b67c53b8a1aa642dfb3309bffd7;p=catalyst.git Use NotImplementedError as suggested by wking. --- 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`