problem got solved

1292         if params.get('expires'):
1293             self.session_key_expires = int(params['expires'])

I've just changed it to:

1292         if params.get('expires'):
1293             try:
1294                 self.session_key_expires = int(params['expires'])
1295             except ValueError:
1296                 pass

It works this way, but it must be fixed in pyFacebook next version.

this is the solution

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to