minor spelling fixes

This commit is contained in:
Carlos E. Garcia 2014-09-15 20:29:00 -04:00
commit f5775bcba0
9 changed files with 9 additions and 9 deletions

View file

@ -33,7 +33,7 @@ class BaseFormatter(logging.Formatter):
s = super(BaseFormatter, self).formatException(ei)
# fancy format traceback
s = str('\n').join(str(' | ') + line for line in s.splitlines())
# seperate the traceback from the preceding lines
# separate the traceback from the preceding lines
s = str(' |___\n{}').format(s)
return s