From a37be8bb35763acb48855020f1f3fe300f776c23 Mon Sep 17 00:00:00 2001 From: Thomas Hurst Date: Fri, 29 Aug 2008 21:29:07 +0100 Subject: [PATCH] Change debugging from "Ignoring" to "Skipping", and use repr(). --- terminatorlib/configfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/configfile.py b/terminatorlib/configfile.py index 01272ef5..ee6e5e56 100644 --- a/terminatorlib/configfile.py +++ b/terminatorlib/configfile.py @@ -139,7 +139,7 @@ class ConfigFile: if not self._call_if_match(Barevalue, self._value, 1): raise ConfigSyntaxError(_("Setting without a value"), self) - self._call_if_match(Ignore, lambda junk: dbg("Ignoring: %s" % junk)) + self._call_if_match(Ignore, lambda junk: dbg("Skipping: %s" % repr(junk))) if self._line[self._pos:] != '': raise ConfigSyntaxError(_("Unexpected token"), self)