From ea21ee0b7f4c87364e1730a600bd53ccf26bf44d Mon Sep 17 00:00:00 2001 From: Amr Hassan Date: Wed, 15 Oct 2008 06:46:00 +0000 Subject: [PATCH] * fix: a typo in the function name Exceptionable.clear_errors() --- pylast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylast.py b/pylast.py index 88da655..a1fe40c 100644 --- a/pylast.py +++ b/pylast.py @@ -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 = []