0003428: When running with pythonw.exe, Windows may crash if you write to stdout. Some more print statements changed to log.warning.

svn: r21511
This commit is contained in:
Tim G L Lyons
2013-03-01 13:12:29 +00:00
parent 7c9ec32d22
commit 98fa69b717
2 changed files with 21 additions and 5 deletions

View File

@@ -32,6 +32,15 @@ Option class representing an enumerated list of possible values.
from __future__ import print_function
from . import Option
from gramps.gen.const import GRAMPS_LOCALE as glocale
_ = glocale.get_translation().sgettext
#-------------------------------------------------------------------------
#
# set up logging
#
#-------------------------------------------------------------------------
import logging
#-------------------------------------------------------------------------
#
@@ -115,5 +124,5 @@ class EnumeratedListOption(Option):
if value in (v for v, d in self.__items):
Option.set_value(self, value)
else:
print("Value '%s' not found for option '%s'" % (str(value),
self.get_label()))
logging.warning(_("Value '%(val)s' not found for option '%(opt)s'") %
{'val' : str(value), 'opt' : self.get_label()})