aboutsummaryrefslogtreecommitdiff
path: root/contrib/libucl/python/src/uclmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/libucl/python/src/uclmodule.c')
-rw-r--r--contrib/libucl/python/src/uclmodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/libucl/python/src/uclmodule.c b/contrib/libucl/python/src/uclmodule.c
index fce0dab14a44..d1051fbb0d12 100644
--- a/contrib/libucl/python/src/uclmodule.c
+++ b/contrib/libucl/python/src/uclmodule.c
@@ -80,7 +80,8 @@ static PyObject *
_internal_load_ucl (char *uclstr)
{
PyObject *ret;
- struct ucl_parser *parser = ucl_parser_new (UCL_PARSER_NO_TIME);
+ struct ucl_parser *parser =
+ ucl_parser_new (UCL_PARSER_NO_TIME|UCL_PARSER_NO_IMPLICIT_ARRAYS);
bool r = ucl_parser_add_string(parser, uclstr, 0);
if (r) {