From 441cccabe7fd255810aabc77fdd636fb3905906b Mon Sep 17 00:00:00 2001 From: Bogdano Arendartchuk Date: Mon, 4 Dec 2006 19:58:45 +0000 Subject: Moved the option "tempdir" from [submit] to [global], since it changes the behavior of all subcommands. --- RepSys/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RepSys/__init__.py') diff --git a/RepSys/__init__.py b/RepSys/__init__.py index 94697d1..b303065 100644 --- a/RepSys/__init__.py +++ b/RepSys/__init__.py @@ -6,7 +6,7 @@ import tempfile import ConfigParser config = ConfigParser.Config() -tempfile.tempdir = config.get("submit", "tempdir", None) or None # when "" +tempfile.tempdir = config.get("global", "tempdir", None) or None # when "" del ConfigParser class Error(Exception): pass -- cgit v1.2.1