summaryrefslogtreecommitdiff
path: root/buildstream/_ostree.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-06 18:29:30 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-06 18:29:30 +0900
commit2cb09f3463833610c4ce5a70162818643662658d (patch)
tree9bff9904f9a0ad816089ef761d52538d557d1847 /buildstream/_ostree.py
parent0ed7bd122679f82158a000a8bca5cd868fbdfb4e (diff)
downloadbuildstream-2cb09f3463833610c4ce5a70162818643662658d.tar.gz
Refactoring: Renamed _BstError -> BstError
Base class for exceptions is now a part of the already private _exceptions module Also moved PipelineError from _pipeline -> _exceptions module
Diffstat (limited to 'buildstream/_ostree.py')
-rw-r--r--buildstream/_ostree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/_ostree.py b/buildstream/_ostree.py
index 8e390e94b..794c57df3 100644
--- a/buildstream/_ostree.py
+++ b/buildstream/_ostree.py
@@ -26,7 +26,7 @@ import os
import subprocess
from . import _site
from . import utils
-from ._exceptions import _BstError
+from ._exceptions import BstError
import gi
gi.require_version('OSTree', '1.0')
@@ -35,7 +35,7 @@ from gi.repository.GLib import Variant, VariantDict # nopep8
# For users of this file, they must expect (except) it.
-class OSTreeError(_BstError):
+class OSTreeError(BstError):
pass