TypeError: 'tuple' object is not callable - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T01:08:50Zhttp://stackoverflow.com/feeds/question/472503http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/472503/typeerror-tuple-object-is-not-callable-3TypeError: 'tuple' object is not callablejazzrai2009-01-23T10:42:44Z2009-05-28T01:06:41Z
<p>I was doing the tutorial from the book teach yourself django in 24 hours and in part1 hour 4 i got stuck on this error. </p>
<pre><code>Traceback (most recent call last):
File "C:\Python25\lib\site-packages\django\core\servers\basehttp.py", line 278, in run
self.result = application(self.environ, self.start_response)
File "C:\Python25\lib\site-packages\django\core\servers\basehttp.py", line 635, in __call__
return self.application(environ, start_response)
File "C:\Python25\lib\site-packages\django\core\handlers\wsgi.py", line 239, in __call__
response = self.get_response(request)
File "C:\Python25\lib\site-packages\django\core\handlers\base.py", line 67, in get_response
response = middleware_method(request)
File "C:\Python25\Lib\site-packages\django\middleware\common.py", line 56, in process_request
if (not _is_valid_path(request.path_info) and
File "C:\Python25\Lib\site-packages\django\middleware\common.py", line 142, in _is_valid_path
urlresolvers.resolve(path)
File "C:\Python25\Lib\site-packages\django\core\urlresolvers.py", line 254, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Python25\Lib\site-packages\django\core\urlresolvers.py", line 181, in resolve
for pattern in self.url_patterns:
File "C:\Python25\Lib\site-packages\django\core\urlresolvers.py", line 205, in _get_url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "C:\Python25\Lib\site-packages\django\core\urlresolvers.py", line 200, in _get_urlconf_module
self._urlconf_module = __import__(self.urlconf_name, {}, {}, [''])
File "c:\projects\iFriends\..\iFriends\urls.py", line 17, in <module>
(r'^admin/', include('django.contribute.admin.urls'))
TypeError: 'tuple' object is not callable
</code></pre>
<p>Can someone help me please..</p>
<p>url.py</p>
<pre><code>from django.conf.urls.defaults import *
####Uncomment the next two lines to enable the admin:
#### from django.contrib import admin
#### admin.autodiscover()
urlpatterns = patterns('',
(r'^People/$', 'iFriends.People.views.index') ,
(r'^admin/', include('django.contrib.admin.urls')),
# Example:
# (r'^iFriends/', include('iFriends.foo.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
)
</code></pre>
http://stackoverflow.com/questions/472503/typeerror-tuple-object-is-not-callable/472515#4725150Answer by nosklo for TypeError: 'tuple' object is not callablenosklo2009-01-23T10:47:45Z2009-01-23T13:45:02Z<p>You somehow set some function to a tuple. Please edit the question and paste your <code>urls.py</code> code, so we can point you to the error.</p>
<p>I can try a <strong>wild guess</strong>:</p>
<pre><code>File "c:\projects\iFriends\..\iFriends\urls.py", line 17, in <module>
(r'^admin/', include('django.contribute.admin.urls'))
</code></pre>
<p>This somehow tells me that you missed a comma on line 16, so:</p>
<pre><code>16. (r'^/', 'some_stuff....') # <-- missed comma here
17. (r'^admin/', include('django.contribute.admin.urls'))
</code></pre>
<p>Just put the comma and it will work. If that's not the case, I'll send my cristal ball for mainantance. Paste the code.</p>
<h1>EDIT</h1>
<p>Seems like you have pasted the <code>urls.py</code> as an answer. Please edit the <strong>question</strong> and paste urls.py there.</p>
<p>Anyway, the error has changed. What did you do? In this new error, <code>urls.py</code> is not found anymore so maybe you've renamed it? Have you changed the way you run the application?</p>
<p>The file you pasted <strong>is not</strong> the one that is running. Are you pasting <code>url.py</code> and django is reading <code>urls.py</code>? The code in the error doesn't match the code you pasted! Please paste the correct file, i.e. the same that gives the error, or we can't help.</p>
http://stackoverflow.com/questions/472503/typeerror-tuple-object-is-not-callable/472539#472539-3Answer by jazzrai for TypeError: 'tuple' object is not callablejazzrai2009-01-23T11:00:38Z2009-01-23T11:30:51Z<p>url.py</p>
<p>from django.conf.urls.defaults import *</p>
Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
<p>urlpatterns = patterns('',
(r'^People/$', 'iFriends.People.views.index') ,
(r'^admin/', include('django.contrib.admin.urls')),
# Example:
# (r'^iFriends/', include('iFriends.foo.urls')),</p>
<pre><code># Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
</code></pre>
<p>)</p>
http://stackoverflow.com/questions/472503/typeerror-tuple-object-is-not-callable/918717#9187170Answer by Trey for TypeError: 'tuple' object is not callableTrey2009-05-28T01:06:41Z2009-05-28T01:06:41Z<p>This book sucks, I received the same error, b/c of that damn comma they forgot to put in. This is the forth error i have found w/in the first 3 hours (chapters)</p>