From d7b2aa24f75434c2ce50100cfef3586071e0747a Mon Sep 17 00:00:00 2001 From: Дилян Палаузов Date: Wed, 3 Jan 2018 18:52:12 -0500 Subject: Fixed #28982 -- Simplified code with and/or. --- tests/multiple_database/routers.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/multiple_database') diff --git a/tests/multiple_database/routers.py b/tests/multiple_database/routers.py index cb12a907c9..7891e22969 100644 --- a/tests/multiple_database/routers.py +++ b/tests/multiple_database/routers.py @@ -43,9 +43,7 @@ class AuthRouter: def allow_relation(self, obj1, obj2, **hints): "Allow any relation if a model in Auth is involved" - if obj1._meta.app_label == 'auth' or obj2._meta.app_label == 'auth': - return True - return None + return obj1._meta.app_label == 'auth' or obj2._meta.app_label == 'auth' or None def allow_migrate(self, db, app_label, **hints): "Make sure the auth app only appears on the 'other' db" -- cgit v1.3