diff --git a/django/db/utils.py b/django/db/utils.py index 4377f3cdbe..e8e508bde8 100644 --- a/django/db/utils.py +++ b/django/db/utils.py @@ -131,8 +131,7 @@ class ConnectionRouter(object): # If the router doesn't have a method, skip to the next one. pass else: - chosen_db = method(model, **hints - ) + chosen_db = method(model, **hints) if chosen_db: return chosen_db try: