aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
authorHemmo Nieminen <hemmo.nieminen@iki.fi>2016-03-22 19:31:55 +0200
committerHemmo Nieminen <hemmo.nieminen@iki.fi>2016-04-01 00:52:45 +0300
commit336904b55309c9b5f14e4511655af6028e04c03d (patch)
tree940541514425aa38e940ef4ed4c1289d66c259b3 /mesonbuild/mconf.py
parent5764bee2f42260c2869986b197fdccadac071257 (diff)
downloadmeson-336904b55309c9b5f14e4511655af6028e04c03d.zip
meson-336904b55309c9b5f14e4511655af6028e04c03d.tar.gz
meson-336904b55309c9b5f14e4511655af6028e04c03d.tar.bz2
Move MesonException from coredata to mesonlib.
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index c8ea494..30c2da3 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -26,7 +26,7 @@ parser.add_argument('-D', action='append', default=[], dest='sets',
help='Set an option to the given value.')
parser.add_argument('directory', nargs='*')
-class ConfException(coredata.MesonException):
+class ConfException(mesonlib.MesonException):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)