Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am attempting to use url_for inside of a mako template with pyramid (using a book example):

${h.url_for(controller='formtest',action='submit')}

When I do, I get this error:

AttributeError: 'thread._local' object has no attribute 'mapper' 

I installed routes and put this in my helpers.py file:

import webhelpers.html.tags as tags
from routes import url_for

Googling the error, I read that url_for has been deprecated for Pylons. Is this true for Pyramid too? If so, what should I be using?

share|improve this question

1 Answer

up vote 2 down vote accepted

Are you sure you're using Pyramid? Every thing that you have posted is about Pylons and not Pyramid. They are very different frameworks.

Assuming you are using Pylons, url_for was deprecated. You should instead be using the url global variable which is imported from from pylons import url.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.