Add an err() and use it

This commit is contained in:
Chris Jones 2008-06-17 00:10:44 +01:00
parent fcb7dda870
commit 327eadd84e
1 changed files with 3 additions and 1 deletions

View File

@ -49,6 +49,8 @@ debug = True
def dbg (log = ""):
if debug:
print >> sys.stderr, log
def err (log = ""):
print >> sys.stderr, log
class TerminatorConfig:
callback = None
@ -182,7 +184,7 @@ class TerminatorConfValuestoreRC (TerminatorConfValuestore):
elif deftype == 'float':
self.values[key] = float (value)
elif deftype == 'list':
print >> sys.stderr, _("Reading list values from .terminatorrc is not currently supported")
err (_("Reading list values from .terminatorrc is not currently supported"))
raise ValueError
else:
self.values[key] = value