diff options
Diffstat (limited to 'gsxws.py')
-rwxr-xr-x | gsxws.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -928,7 +928,8 @@ def connect( LOCALE = LOCALE md5 = hashlib.md5() - cache_key = md5.update(user_id + str(sold_to)).hexdigest() + md5.update(user_id + str(sold_to)) + cache_key = md5.hexdigest() if CACHE.get(cache_key) is not None: SESSION = CACHE.get(cache_key) |