From 7099d465abad0e6fd7c5ff096dc8ab55c14ecfdd Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Thu, 31 Mar 2011 08:42:51 +0000 Subject: [PATCH] Fixed #15724 -- Added update_wrapper import to utils.functional to be a bit more forgiving for 3rd party apps using that import. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15965 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/functional.py b/django/utils/functional.py index 6199efe77d..d50d4ffa05 100644 --- a/django/utils/functional.py +++ b/django/utils/functional.py @@ -1,4 +1,4 @@ -from functools import wraps +from functools import wraps, update_wrapper # You can't trivially replace this `functools.partial` because this binds to