From 380f6be5b87b9e6cd95897d19fe9b6b0276f9f3d Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 20 Mar 2009 00:56:56 +0000 Subject: [PATCH] Whoops. I left some debugging printing in r10096. Nothing to see here. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10097 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/_threading_local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/_threading_local.py b/django/utils/_threading_local.py index 08dae53dca..488de65900 100644 --- a/django/utils/_threading_local.py +++ b/django/utils/_threading_local.py @@ -146,7 +146,7 @@ class _localbase(object): object.__setattr__(self, '_local__lock', RLock()) if (args or kw) and (cls.__init__ is object.__init__): - raise TypeError("Initialization arguments are not supported: %r, %r, %r" % (args, kw, cls.__init__ is object.__init__)) + raise TypeError("Initialization arguments are not supported) # We need to create the thread dict in anticipation of # __init__ being called, to make sure we don't call it