for the new versions of WebOb:
in line 111
if 'HTTP_ACCEPT' in self.env:
possible_from_accept_header =
webob.acceptparse.MIMEAccept('ACCEPT',
self.env['HTTP_ACCEPT'])
should be
if 'HTTP_ACCEPT' in self.env:
possible_from_accept_header =
webob.acceptparse.MIMEAccept(self.env['HTTP_ACCEPT'])
--
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/pylons-discuss/-/g8MT24uAoz4J.
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.