diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-05-02 11:19:40 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-05-08 10:20:55 -0700 |
commit | e87a6e1011f46ac896c0bab1c64a3383dce6cb38 (patch) | |
tree | e8b9e4ce4fe026edba80047b43747ef447c43dd8 | |
parent | 33e58d5583eb7ed3966a1b905f875a1dfa959f6b (diff) |
crucible: fix getting values from piglit.conf
Reviewed-by: Juan A. Suarez <jasuarez@igalia.com>
-rw-r--r-- | tests/crucible.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/crucible.py b/tests/crucible.py index 279cadde8..796d0951a 100644 --- a/tests/crucible.py +++ b/tests/crucible.py @@ -39,7 +39,7 @@ __all__ = ['profile'] crucible_bin = os.environ.get('PIGLIT_CRUCIBLE_BIN', None) if crucible_bin is None: - crucible_bin = PIGLIT_CONFIG.safe_get(('crucible', 'bin'), True) + crucible_bin = PIGLIT_CONFIG.safe_get('crucible', 'bin') if crucible_bin is None: raise exceptions.PiglitFatalError( |