diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-06-29 00:29:14 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-06-29 00:29:14 -0400 |
commit | f293e7d7c76f383eae64f224834815f1b14a78e6 (patch) | |
tree | b5759354b46470d25beafccfdeb48eabae03ff83 /cbc/environment.py | |
parent | 3f6e82f632027904e2912664cbb1c60cdc79a509 (diff) | |
download | cbc-f293e7d7c76f383eae64f224834815f1b14a78e6.tar.gz |
Getting closer to the real deal
Diffstat (limited to 'cbc/environment.py')
-rw-r--r-- | cbc/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cbc/environment.py b/cbc/environment.py index 7bc427c..a1c6b6e 100644 --- a/cbc/environment.py +++ b/cbc/environment.py @@ -21,7 +21,7 @@ class Environment(object): self.cbchome = self.environ['CBC_HOME']
if self.cbchome is None:
- raise IncompleteEnv('Environment.cbchome is undefined')
+ raise IncompleteEnv('CBC_HOME is undefined.')
self.cbchome = os.path.abspath(self.cbchome)
|