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/compilers.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/compilers.py')
-rw-r--r-- | mesonbuild/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index 3079c5e..a06e2a9 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -16,7 +16,7 @@ import subprocess, os.path import tempfile from .import mesonlib from . import mlog -from .coredata import MesonException +from .mesonlib import MesonException from . import coredata """This file contains the data files of all compilers Meson knows |