diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-11-15 16:38:34 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-11-15 16:38:34 +0900 |
commit | 34479395f01fb4c5d6fc0ad303348b79ce4ad3a2 (patch) | |
tree | 0e0f92f287e20d96926504ee8180de019b51658b /buildstream/__init__.py | |
parent | f127404a436c04c0c408ca1f7c41c1f2052bab8c (diff) | |
download | buildstream-34479395f01fb4c5d6fc0ad303348b79ce4ad3a2.tar.gz |
Moved YAML dictionary loading to utils.py
And renamed ContextError exception to a more general LoadError.
Diffstat (limited to 'buildstream/__init__.py')
-rw-r--r-- | buildstream/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/__init__.py b/buildstream/__init__.py index 392157e6f..d5def99ae 100644 --- a/buildstream/__init__.py +++ b/buildstream/__init__.py @@ -19,7 +19,7 @@ # Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> # Exceptions first -from .exceptions import PluginError, ContextError +from .exceptions import PluginError, LoadError # Common stuff from .utils import dictionary_override |