From 3656496d898073e70cafb94ade04515dd53df081 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 21 Oct 2004 15:11:29 +0000 Subject: [PATCH] bugfix in initilizing config file --- core/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core.py b/core/core.py index f59b4bcad..769e02fed 100644 --- a/core/core.py +++ b/core/core.py @@ -271,10 +271,10 @@ class GajimCore: 'localhost', 'port': 8255, 'modules': 'gtkgui'}} fname = os.path.expanduser(CONFPATH) reps = string.split(fname, '/') - del reps[0] +# del reps[0] path = '' while len(reps) > 1: - path = path + '/' + reps[0] + path = path + reps[0] + '/' del reps[0] try: os.stat(os.path.expanduser(path))