1👍
✅
I’ve “fixed” this by removing the timeout param from here:
/usr/lib/python2.5/site-packages/open_facebook/api.py
The timeout param is right below the comment saying this param could be left out for older python versions.
0👍
think you should try upgrading the Python version you’re using (or better yet, use virtualenv!)
looks like you’re using Python 2.5 which is pretty old, so maybe you’re getting that error because the library is relying on that timeout= keyword argument which was probably added in 2.6 or 2.7 etc.
From https://github.com/tschellenbach/Django-facebook/blob/master/open_facebook/api.py#L92
, looks like its calling open() on a urllib2.OpenerDirector, so probably that timeout keyword arg was added there ^ at some point
- [Answer]-Replacing default admin display for adding Foreign Key for Page
- [Answer]-Form Wizard: error undefined variables
Source:stackexchange.com