diff options
Diffstat (limited to 'rpkid/rpki/config.py')
-rw-r--r-- | rpkid/rpki/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpkid/rpki/config.py b/rpkid/rpki/config.py index df856311..72bbc589 100644 --- a/rpkid/rpki/config.py +++ b/rpkid/rpki/config.py @@ -22,11 +22,11 @@ import ConfigParser class parser(ConfigParser.RawConfigParser): - def __init__(self, file = None, section = None): + def __init__(self, filename = None, section = None): """Initialize this parser.""" ConfigParser.RawConfigParser.__init__(self) - if file: - self.read(file) + if filename: + self.read(filename) self.default_section = section def multiget(self, option, section = None): |