summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-08-18 10:34:40 -0400
committerTom Stellard <thomas.stellard@amd.com>2014-08-20 13:14:15 -0400
commit345ebd982bb05c3931496cf53ade7d0390e6b626 (patch)
treec0a154fe7201eff8ae28a0d7d71164fc9d0a0ddd
parentc45466e74e3003f5d78edf5d14b1911bc802f645 (diff)
core: Initialize ConfigParser with allow_no_value=True
Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
-rw-r--r--framework/core.py2
1 files changed, 1 insertions, 1 deletions
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: