aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys/__init__.py
blob: 2759e8f87cc8b03d839981684f7abbc30bbcb65a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python
import re
import os
import tempfile

import ConfigParser

config = ConfigParser.Config()
tempfile.tempdir = config.get("global", "tempdir", None) or None # when ""
del ConfigParser

class Error(Exception): pass

# vim:et:ts=4:sw=4