* src/Spell.py: give more intelligent error message if spelling

checker is not found.
* src/plugins/DescendChart.py: fixed type detection to handle both
unicode and str.


svn: r5297
This commit is contained in:
Don Allingham
2005-10-10 03:30:07 +00:00
parent 5993b7590f
commit 88f4a669de
4 changed files with 6 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ try:
success = True
except ImportError, msg:
print "Spell.py: ", msg
print _("Spelling checker is not installed")
except RuntimeError,msg:
print "Spell.py: ", msg
except SystemError,msg: