Skip to content

Commit

Permalink
Fix erroneous parameter name.
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Aug 8, 2018
1 parent f8f4977 commit 71f2759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bonobo/contrib/django/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ def handle(self, *args, **options):
self.stderr = OutputWrapper(ConsoleOutputPlugin._stderr, ending=CLEAR_EOL + '\n')
self.stderr.style_func = lambda x: Fore.LIGHTRED_EX + Back.RED + '!' + Style.RESET_ALL + ' ' + x

self.run(*args, **kwargs)
self.run(*args, **options)

self.stdout, self.stderr = _stdout_backup, _stderr_backup

0 comments on commit 71f2759

Please sign in to comment.