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
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
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
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
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
5 matches
Mail list logo