Re: Value Error in Pyfacebook

2010-08-08 Thread Fabian Ezequiel Gallina
2010/8/8 Pankaj Singh : > 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_expi

Re: Value Error in Pyfacebook

2010-08-07 Thread Pankaj Singh
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

Re: Value Error in Pyfacebook

2010-08-07 Thread marekw2143
At the end of the stacktrace there's written: ValueError: invalid literal for int() with base 10: 'None' You can debug that code and see what happens. On Aug 7, 10:20 pm, Pankaj Singh wrote: > Hi i m getting this error > > *** > T

Re: Value Error in Pyfacebook

2010-08-07 Thread marekw2143
At the end of the stacktrace there's written: ValueError: invalid literal for int() with base 10: 'None' You can debug that code and see what happens. On Aug 7, 10:20 pm, Pankaj Singh wrote: > Hi i m getting this error > > *** > T

Value Error in Pyfacebook

2010-08-07 Thread Pankaj Singh
Hi i m getting this error *** Traceback (most recent call last): File "/usr/local/alwaysdata/python/ django/1.2.1/django/core/handlers/base.py", line 100, in get_response response = callback(request, *callback_args, **callback_kw