commit: 016c8460c88c89e55f85e34664fe7928b0f1c6a6
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue May 19 19:14:29 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu May 21 20:26:15 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=016c8460
catalyst: Drop ConfigParser
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/config.py | 11 -----------
1 file changed, 11 deletions(-)
diff --git a/catalyst/config.py b/catalyst/config.py
index b527ada0..e1963f71 100644
--- a/catalyst/config.py
+++ b/catalyst/config.py
@@ -118,14 +118,3 @@ class SpecParser(ParserBase):
def __init__(self, filename=""):
if filename:
self.parse_file(filename)
-
-
-class ConfigParser(ParserBase):
-
- key_value_separator = '='
- multiple_values = False
- empty_values = True
-
- def __init__(self, filename=""):
- if filename:
- self.parse_file(filename)