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