aboutsummaryrefslogtreecommitdiff
path: root/rambo/rambo.py
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2017-06-06 13:28:57 -0400
committerMatt Rendina <mrendina@stsci.edu>2017-06-06 13:28:57 -0400
commita6336f38a462ab052b66191d135a96c2f1d6bdaf (patch)
tree96a868abb0cdaf79f7f74db0787c9af7fa8ac37f /rambo/rambo.py
parent36f3c9c51c7d6d1c0de0f1e93c0cedf8ac06afb8 (diff)
downloadrambo-a6336f38a462ab052b66191d135a96c2f1d6bdaf.tar.gz
PEP8 and other minor adjustments
Diffstat (limited to 'rambo/rambo.py')
-rwxr-xr-xrambo/rambo.py13
1 files changed, 6 insertions, 7 deletions
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'