Ticket #24532: patch.diff
File patch.diff, 574 bytes (added by , 10 years ago) |
---|
-
django/db/utils.py
diff --git a/django/db/utils.py b/django/db/utils.py index 475edae..4ce7030 100644
a b class ConnectionRouter(object): 333 333 # If the router doesn't have a method, skip to the next one. 334 334 continue 335 335 336 argspec = inspect.getargspec( router.allow_migrate)336 argspec = inspect.getargspec(method) 337 337 if len(argspec.args) == 3 and not argspec.keywords: 338 338 warnings.warn( 339 339 "The signature of allow_migrate has changed from "