docs: fix simple typo, runnning -> running

There is a small typo in bonobo/errors.py.

Should read `running` rather than `runnning`.
This commit is contained in:
Tim Gates
2020-12-31 07:36:47 +11:00
parent 274058db8b
commit b45f39126c

View File

@ -30,7 +30,7 @@ class ConfigurationError(Exception):
class UnrecoverableError(Exception): class UnrecoverableError(Exception):
"""Flag for errors that must interrupt the workflow, either because they will happen for sure on each node run, or """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): class AbstractError(UnrecoverableError, NotImplementedError):