tests/config.py
author Radek Brich <radek.brich@devl.cz>
Fri, 04 Oct 2013 16:37:29 +0200
changeset 89 6b72d61837b1
parent 49 08e4dfe1b0cb
permissions -rw-r--r--
Fix PgManager logging.

class Config(dict):
    def __init__(self, fname):
        with open(fname) as f:
            data = f.read()
        exec(data, dict(), self)