aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mparser.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/mparser.py
parent5764bee2f42260c2869986b197fdccadac071257 (diff)
downloadmeson-336904b55309c9b5f14e4511655af6028e04c03d.zip
meson-336904b55309c9b5f14e4511655af6028e04c03d.tar.gz
meson-336904b55309c9b5f14e4511655af6028e04c03d.tar.bz2
Move MesonException from coredata to mesonlib.
Diffstat (limited to 'mesonbuild/mparser.py')
-rw-r--r--mesonbuild/mparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mparser.py b/mesonbuild/mparser.py
index 090684c..fd720fb 100644
--- a/mesonbuild/mparser.py
+++ b/mesonbuild/mparser.py
@@ -13,7 +13,7 @@
# limitations under the License.
import re
-from .coredata import MesonException
+from .mesonlib import MesonException
class ParseException(MesonException):
def __init__(self, text, lineno, colno):