From 2082034e852f708b02977400444c9f6c18d49c2a Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sat, 6 Jan 2007 15:29:09 +0000 Subject: [PATCH] root under win9X is . instead of '' --- src/common/configpaths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/configpaths.py b/src/common/configpaths.py index 2fcf50647..f7e09a686 100644 --- a/src/common/configpaths.py +++ b/src/common/configpaths.py @@ -41,7 +41,7 @@ class ConfigPaths: self.root = os.path.join(fse(os.environ[u'appdata']), u'Gajim') except KeyError: # win9x, in cwd - self.root = u'' + self.root = u'.' else: # Unices # Pass in an Unicode string, and hopefully get one back. self.root = os.path.expanduser(u'~/.gajim')