diff --git a/bonobo/contrib/django/commands.py b/bonobo/contrib/django/commands.py index e96eac4a..34dcae2d 100644 --- a/bonobo/contrib/django/commands.py +++ b/bonobo/contrib/django/commands.py @@ -78,6 +78,6 @@ def handle(self, *args, **options): self.stderr.style_func = lambda x: Fore.LIGHTRED_EX + Back.RED + "!" + Style.RESET_ALL + " " + x try: - return self.run(*args, **options) + self.run(*args, **options) finally: self.stdout, self.stderr = _stdout_backup, _stderr_backup diff --git a/bonobo/util/collections.py b/bonobo/util/collections.py index e573f263..4e20f8b4 100644 --- a/bonobo/util/collections.py +++ b/bonobo/util/collections.py @@ -1,6 +1,6 @@ import bisect import functools -from collections import Sequence +from collections.abc import Sequence class sortedlist(list):