From 8b7a3b5cebb8ed7ead60841d052c02753d09ac34 Mon Sep 17 00:00:00 2001 From: Simon Schampijer Date: Fri, 23 Mar 2012 11:37:34 +0000 Subject: Use json as included in Python SL #3142 We use json as included in Python. This will make Sugar dependent on Python 2.6 and Python 2.7 to have the highest JSON performance. Signed-off-by: Simon Schampijer Acked-by: Manuel QuiƱones --- (limited to 'webactivity.py') diff --git a/webactivity.py b/webactivity.py index 8b8db59..29258e6 100644 --- a/webactivity.py +++ b/webactivity.py @@ -33,7 +33,7 @@ import base64 import time import shutil import sqlite3 -import cjson +import json from gi.repository import GConf import locale import cairo @@ -123,7 +123,7 @@ def _seed_xs_cookie(): path, expiry, lastAccessed, isSecure, isHttpOnly) VALUES(?,?,?,?,?,?,?,?)''', - ('xoid', cjson.encode(cookie_data), jabber_server, + ('xoid', json.loads(cookie_data), jabber_server, '/', expire, 0, 0, 0)) cookies_db.commit() cookies_db.close() -- cgit v0.9.1