* fix: a typo in the function name Exceptionable.clear_errors()

This commit is contained in:
Amr Hassan 2008-10-15 06:46:00 +00:00
parent 706a34df54
commit ea21ee0b7f

View file

@ -222,7 +222,7 @@ class Exceptionable(object):
for e in exceptional.get_all_errors():
self._report_error(e)
def clear_erros(self):
def clear_errors(self):
"""Clear the error log for this object."""
self.__errors = []