aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys
diff options
context:
space:
mode:
authorBogdano Arendartchuk <bogdano@mandriva.org>2006-12-04 19:58:45 +0000
committerBogdano Arendartchuk <bogdano@mandriva.org>2006-12-04 19:58:45 +0000
commit441cccabe7fd255810aabc77fdd636fb3905906b (patch)
tree130502fc2d6d123e9830eb2f177fd5bc6dcf1b5d /RepSys
parent3362fd42e4cc57d2f4241252ca6b3ef1b1e98596 (diff)
downloadmgarepo-441cccabe7fd255810aabc77fdd636fb3905906b.tar
mgarepo-441cccabe7fd255810aabc77fdd636fb3905906b.tar.gz
mgarepo-441cccabe7fd255810aabc77fdd636fb3905906b.tar.bz2
mgarepo-441cccabe7fd255810aabc77fdd636fb3905906b.tar.xz
mgarepo-441cccabe7fd255810aabc77fdd636fb3905906b.zip
Moved the option "tempdir" from [submit] to [global], since it changes the
behavior of all subcommands.
Diffstat (limited to 'RepSys')
-rw-r--r--RepSys/__init__.py2
1 files changed, 1 insertions, 1 deletions
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