From abcc846de962306765de8fda54663b2c77c5ec92 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 5 Jan 2014 23:06:06 +0200 Subject: [PATCH] Some dots. --- mesonconf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mesonconf.py b/mesonconf.py index 02e970256..657168c2b 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)