I'm new to Pylons, so I apologize in advance if I missed something.
However, it appears to me that this file uses abort() but does not
import it. I have attached a tiny patch to add the import.
-Diego Ongaro
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-devel" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pylons-devel?hl=en
-~----------~----~----~----~------~----~------~--~---
diff -r ecac7f6a1312 pylons/templates/default_project/+package+/controllers/template.py_tmpl
--- a/pylons/templates/default_project/+package+/controllers/template.py_tmpl Thu Jan 03 10:03:09 2008 -0800
+++ b/pylons/templates/default_project/+package+/controllers/template.py_tmpl Wed Jan 09 19:34:48 2008 +0000
@@ -1,4 +1,5 @@ from {{package}}.lib.base import *
from {{package}}.lib.base import *
+from pylons.controllers.util import abort, redirect_to, url_for
class TemplateController(BaseController):