* Heiko Stübner <[email protected]>, 2010-02-14, 13:10:
>Do you have ideas what causes this?Wild guess: you have python-json installed?You're right :-). Didn't remember I installed it from the time I tried to follow these simplejson -> json changes and wrongly found python-json first. Without python-json agtl starts again. But how do we solve this python-json problem? At first glance a conflicts "python-json" seems bad to me, are there other - better solutions?
The following snippet should work:
try:
import json
json.dumps
except (ImportError, AttributeError):
import simplejson as json
Anyway, this a more general problem:
http://lists.debian.org/debian-python/2010/02/msg00013.html
--
Jakub Wilk
signature.asc
Description: Digital signature

