From 4ae0cadb7f951691e2913a660a61d024d04b5485 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Tue, 5 Dec 2017 00:13:27 +0200 Subject: Renamed UserStringArrayOption to UserArrayOption for short. --- mesonbuild/optinterpreter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/optinterpreter.py') diff --git a/mesonbuild/optinterpreter.py b/mesonbuild/optinterpreter.py index 3cca239..f8ccbe6 100644 --- a/mesonbuild/optinterpreter.py +++ b/mesonbuild/optinterpreter.py @@ -99,7 +99,7 @@ def string_array_parser(name, description, kwargs): value = kwargs.get('value', []) if not isinstance(value, list): raise OptionException('Array choices must be passed as an array.') - return coredata.UserStringArrayOption(name, description, value, choices=choices) + return coredata.UserArrayOption(name, description, value, choices=choices) option_types = {'string': StringParser, 'boolean': BooleanParser, -- cgit v1.1