From 11df8b9783c13668373a97d3824a832c31b9c188 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Fri, 29 Aug 2008 14:09:29 +0100 Subject: [PATCH] python 2.4 hates Exception.message, and it's not really crucial here anyway, so ditch it. Closes LP #262452 --- terminatorlib/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 48c7304c..7f194926 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -203,7 +203,7 @@ class TerminatorConfValuestoreRC (TerminatorConfValuestore): try: directory = os.environ['XDG_CONFIG_HOME'] except KeyError, e: - dbg(" VS_RCFile: Environment variable %s not found. defaulting to ~/.config" % e.message) + dbg(" VS_RCFile: Environment variable XDG_CONFIG_HOME not found. defaulting to ~/.config") directory = os.path.join (os.path.expanduser("~"), ".config") self.rcfilename = os.path.join(directory, "terminator/config") dbg(" VS_RCFile: config file located at %s" % self.rcfilename)