tests/config.py
author Radek Brich <radek.brich@devl.cz>
Wed, 28 Mar 2012 17:25:18 +0200
changeset 33 bd0beda49bcb
parent 22 680631f35d83
child 37 5b0eb4b11940
permissions -rw-r--r--
PgManager: log connection name with queries. BatchUpdateTool: handle some possible exceptions and try reconnect to database.

import sys

sys.path.insert(0, '..')


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