From b45f39126c5a44731dc3cfb58c96b8a362ea9c81 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 31 Dec 2020 07:36:47 +1100 Subject: [PATCH] docs: fix simple typo, runnning -> running There is a small typo in bonobo/errors.py. Should read `running` rather than `runnning`. --- bonobo/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonobo/errors.py b/bonobo/errors.py index 09995d7..09d2929 100644 --- a/bonobo/errors.py +++ b/bonobo/errors.py @@ -30,7 +30,7 @@ class ConfigurationError(Exception): class UnrecoverableError(Exception): """Flag for errors that must interrupt the workflow, either because they will happen for sure on each node run, or - because you know that your transformation has no point continuing runnning after a bad event.""" + because you know that your transformation has no point continuing running after a bad event.""" class AbstractError(UnrecoverableError, NotImplementedError):