aboutsummaryrefslogtreecommitdiff
path: root/mesonconf.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2014-01-05 23:06:06 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2014-01-05 23:06:06 +0200
commitabcc846de962306765de8fda54663b2c77c5ec92 (patch)
tree57a4721c9ff4ec0b41bf696668334294f9912438 /mesonconf.py
parentf31bf4636ac245c71ed88d5990c2b6d6484e37e8 (diff)
downloadmeson-abcc846de962306765de8fda54663b2c77c5ec92.zip
meson-abcc846de962306765de8fda54663b2c77c5ec92.tar.gz
meson-abcc846de962306765de8fda54663b2c77c5ec92.tar.bz2
Some dots.
Diffstat (limited to 'mesonconf.py')
-rwxr-xr-xmesonconf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonconf.py b/mesonconf.py
index 02e9702..657168c 100755
--- a/mesonconf.py
+++ b/mesonconf.py
@@ -62,16 +62,16 @@ class Conf:
return True
if thing.lower() == 'false':
return False
- raise ConfException('Value %s is not boolean (true or false)' % thing)
+ raise ConfException('Value %s is not boolean (true or false).' % thing)
def set_options(self, options):
for o in options:
if '=' not in o:
- raise ConfException('Value "%s" not of type "a=b"' % o)
+ raise ConfException('Value "%s" not of type "a=b".' % o)
(k, v) = o.split('=', 1)
if k == 'type':
if v not in build_types:
- raise ConfException('Invalid build type %s' % v)
+ raise ConfException('Invalid build type %s.' % v)
self.coredata.buildtype = v
elif k == 'strip':
self.coredata.strip = self.tobool(v)