And yea, admin docs is in my installed list. Much appreciated.
Still can't get it to work.
This was my traceback:
'str' object has no attribute 'resolve'

Request Method:         GET
Django Version:         1.3
Exception Type:         AttributeError
Exception Value:

'str' object has no attribute 'resolve'

Exception Location:     /home/dockedin/webapps/peebletalk/lib/python2.7/
django/core/urlresolvers.py in resolve, line 252
Python Executable:      /usr/local/bin/python
Python Version:         2.7.1
Python Path:

['/home/dockedin/webapps/peebletalk',
 '/home/dockedin/webapps/peebletalk/lib/python2.7',
 '/home/dockedin/lib/python2.7',
 '/usr/local/lib/python27.zip',
 '/usr/local/lib/python2.7',
 '/usr/local/lib/python2.7/plat-linux2',
 '/usr/local/lib/python2.7/lib-tk',
 '/usr/local/lib/python2.7/lib-old',
 '/usr/local/lib/python2.7/lib-dynload',
 '/usr/local/lib/python2.7/site-packages',
 '/usr/local/lib/python2.7/site-packages/PIL']

Server time:    Wed, 10 Aug 2011 15:24:55 -0400
Traceback Switch to copy-and-paste view

    /home/dockedin/webapps/peebletalk/lib/python2.7/django/core/
handlers/base.py in get_response

                            response = middleware_method(request)

        ...
    ▶ Local vars
    /home/dockedin/webapps/peebletalk/lib/python2.7/django/middleware/
common.py in process_request

                    if (not _is_valid_path(request.path_info, urlconf)
and

        ...
    ▶ Local vars
    /home/dockedin/webapps/peebletalk/lib/python2.7/django/middleware/
common.py in _is_valid_path

                urlresolvers.resolve(path, urlconf)

        ...
    ▶ Local vars
    /home/dockedin/webapps/peebletalk/lib/python2.7/django/core/
urlresolvers.py in resolve

            return get_resolver(urlconf).resolve(path)

        ...
    ▶ Local vars
    /home/dockedin/webapps/peebletalk/lib/python2.7/django/core/
urlresolvers.py in resolve

            def resolve(self, path):

                tried = []

                match = self.regex.search(path)

                if match:

                    new_path = path[match.end():]

                    for pattern in self.url_patterns:

                        try:

                            sub_match = pattern.resolve(new_path)

        ...
                        except Resolver404, e:
                            sub_tried = e.args[0].get('tried')
                            if sub_tried is not None:
                                tried.extend([[pattern] + t for t in
sub_tried])
                            else:
                                tried.append([pattern])

    ▶ Local vars

On Aug 10, 6:09 am, Reinout van Rees <rein...@vanrees.org> wrote:
> On 09-08-11 17:41, raj wrote:
>
> > I keep getting this error:
> > 'str' object has no attribute 'resolve'
>
> >      # 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')),
>
> Did you add 'django.contrib.admindocs' to your INSTALLED_APPS list? Just
> to make sure.
>
> And if that doesn't fix it, could you post the traceback? It might
> contain hints where it goes wrong.
>
> Reinout
>
> --
> Reinout van Rees                    http://reinout.vanrees.org/
> rein...@vanrees.org            http://www.nelen-schuurmans.nl/
> "If you're not sure what to do, make something. -- Paul Graham"

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to