Glad you ran into this issue -- I've run into this one before too, and couldn't remember it last week in the "maintenance notes thread".
This reminded me! ( and - sorry that it caused you problems ) Pylons' setup.py has this in install_requires: WebOb>=1.1.1 If you do an easy_install/pip upgrade , it'll fetch the most recent WebOb -- which is in the 1.2 or 1.3 branch Unfortunately, in WebOb 1.2a1 , that was deprecated... https://github.com/Pylons/webob/blob/master/docs/news.txt 1.2a1 --------- * Remove UnicodeMultiDict class; the result of ``Request.GET`` and ``Request.POST`` is now just a plain ``MultiDict``. You either need to : a- remove UnicodeMultiDict from your code or b- revert to earlier webob `easy_install WebOb==1.1.1` -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
