From b66d73cb90239506038b6e89c26b726972d97b6b Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 5 May 2009 01:29:16 +0000 Subject: [PATCH] make Config inherit dict class --- geni/util/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geni/util/config.py b/geni/util/config.py index e99674cf..59b330ce 100644 --- a/geni/util/config.py +++ b/geni/util/config.py @@ -19,7 +19,7 @@ import sys geni = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))+ os.sep + "geni" -class Config: +class Config(dict): """ Parse the bash/Python/PHP version of the configuration file. Very fast but no type conversions. -- 2.43.0