diff options
author | Hemmo Nieminen <hemmo.nieminen@iki.fi> | 2016-03-22 19:31:55 +0200 |
---|---|---|
committer | Hemmo Nieminen <hemmo.nieminen@iki.fi> | 2016-04-01 00:52:45 +0300 |
commit | 336904b55309c9b5f14e4511655af6028e04c03d (patch) | |
tree | 940541514425aa38e940ef4ed4c1289d66c259b3 /mesonbuild/mconf.py | |
parent | 5764bee2f42260c2869986b197fdccadac071257 (diff) | |
download | meson-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.py | 2 |
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) |