From a6336f38a462ab052b66191d135a96c2f1d6bdaf Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Tue, 6 Jun 2017 13:28:57 -0400 Subject: PEP8 and other minor adjustments --- rambo/rambo.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'rambo/rambo.py') diff --git a/rambo/rambo.py b/rambo/rambo.py index f8b65c0..7c8ff58 100755 --- a/rambo/rambo.py +++ b/rambo/rambo.py @@ -19,13 +19,12 @@ from ._version import __version__ try: import conda_build.api except ImportError: - raise ImportError('conda-build must be installed order to use this \n' - 'tool. Either conda-build is not installed, or you \n' - 'are working in an activated conda environment. \n' - 'If conda-build is installed deactivate the \n' - 'environment currently enabled or explicitly switch \n' - 'to the conda "root" environment to allow use of\n' - 'conda-build.') + print('conda-build must be installed order to use this tool. \n' + 'Either conda-build is not installed, or you are working in an \n' + 'activated conda environment. \n' + 'If conda-build is installed deactivate the environment currently \n' + 'enabled or explicitly switch to the conda "root" environment to \n' + 'allow use of conda-build.') DEFAULT_MINIMUM_NUMPY_VERSION = '1.11' -- cgit