From 37bf4972fb24679cccffc23dc09ba44bf3b9ac79 Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Tue, 26 Dec 2006 16:00:07 -0800 Subject: [PATCH] [CONFIG] Fix automatic absolutizing of directories Fix the automatic absolutizing of directories in the RarslaveConfig class. Signed-off-by: Ira W. Snyder --- RarslaveConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RarslaveConfig.py b/RarslaveConfig.py index f4a2988..42941d7 100644 --- a/RarslaveConfig.py +++ b/RarslaveConfig.py @@ -107,7 +107,7 @@ class RarslaveConfig (object): value = eval (value) # Absolute-ize directories for easier use - if section == 'directories': + if section == 'directories' and value != None: value = os.path.abspath (os.path.expanduser (value)) return value -- 2.25.1