##// END OF EJS Templates
models: update db.py with major changes for python3
models: update db.py with major changes for python3

File last commit:

r4927:e51d300d default
r5071:d5c2bc34 default
Show More
cfgparse.py
27 lines | 699 B | text/x-python | PythonLexer
"""
Configuration parser module.
"""
import configparser
from rhodecode.lib.dbmigrate.migrate.versioning.config import *
from rhodecode.lib.dbmigrate.migrate.versioning import pathed
class Parser(ConfigParser):
"""A project configuration file."""
def to_dict(self, sections=None):
"""It's easier to access config values like dictionaries"""
return self._sections
class Config(pathed.Pathed, Parser):
"""Configuration class."""
def __init__(self, path, *p, **k):
"""Confirm the config file exists; read it."""
self.require_found(path)
pathed.Pathed.__init__(self, path)
Parser.__init__(self, *p, **k)
self.read(path)