summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-20 00:58:35 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-20 00:58:35 +0000
commite3139cc0757919795a8cdd24a110419d725b86ea (patch)
tree9ee8690079ffcd81e13a2410c091936de2b75c8d
parent380f6be5b87b9e6cd95897d19fe9b6b0276f9f3d (diff)
More typo fixing. :-(
I'm crawling into my hole now. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/utils/_threading_local.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/_threading_local.py b/django/utils/_threading_local.py
index 488de65900..9225d01e63 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)
+ 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