commit: 474584e2f8822c1b878952e07b1d28a925c0b5e2 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: Wed May 20 00:25:11 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=474584e2
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)