From c74a72a6a192adf4a3a496c7d05a123d548b7538 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 19 Jun 2015 10:22:36 +0300 Subject: [PATCH] mesonconf: fix bad-continuation Signed-off-by: Igor Gnatenko --- mesonconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonconf.py b/mesonconf.py index 8773aa0cb..ec6faef28 100755 --- a/mesonconf.py +++ b/mesonconf.py @@ -23,7 +23,7 @@ from meson import build_types parser = argparse.ArgumentParser() parser.add_argument('-D', action='append', default=[], dest='sets', - help='Set an option to the given value.') + help='Set an option to the given value.') parser.add_argument('directory', nargs='*') class ConfException(Exception):