From 345ebd982bb05c3931496cf53ade7d0390e6b626 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Mon, 18 Aug 2014 10:34:40 -0400 Subject: core: Initialize ConfigParser with allow_no_value=True Reviewed-by: Dylan Baker --- framework/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core.py b/framework/core.py index d5f1fcc09..2205537f4 100644 --- a/framework/core.py +++ b/framework/core.py @@ -37,7 +37,7 @@ __all__ = ['PIGLIT_CONFIG', 'parse_listfile'] -PIGLIT_CONFIG = ConfigParser.SafeConfigParser() +PIGLIT_CONFIG = ConfigParser.SafeConfigParser(allow_no_value=True) def get_config(arg=None): if arg: -- cgit v1.2.3