Ok, so I used grep to search for WebHelpers[>=<] as Mike suggested and
found:

  /path/to/virtualenv/lib/python2.5/site-packages/FormBuild-2.2.0-
py2.5.egg/EGG-INFO/requires.txt:WebHelpers>=0.6.1,<0.6.99

So it was FormBuild-2.2.0 that was requiring WebHelpers-0.6.4 and it
was webhelpers.paginate that was causing the GenerationException
because it was using url_for() instead of url.current().  I considered
upgrading to FormBuild>=3.0 but I did a quick search of my code and
realized that I wasn't using FormBuild (at least I hope I wasn't)
except for a couple of imports in lib/helpers.py (probably vestiges
from working through the Pylons book).

So I removed the formbuild imports from helpers, and removed formbuild
from install_requires in setup.py.

Now my app seems to be working fine again.  Pagination is working and
I just hope I am not using formbuild somewhere in my code.

Thanks again for all your help Mike,

Joel

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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-discuss?hl=en.

Reply via email to