Re: post-review fails on HTTP POST

2010-09-23 Thread Chris Clark
jdt141 wrote: File "/usr/lib/python2.5/site-packages/RBTools-0.2-py2.5.egg/rbtools/ postreview.py", line 549, in process_json AttributeError: 'module' object has no attribute 'loads' I'm at a loss... Any and all help would be appreciated. It looks like the json/simplejson module isn't

Re: post-review fails on HTTP POST

2010-09-23 Thread Christian Hammond
What version of Python do you have? Most likely, you are running 2.4 or 2.5 and have an incompatible json module. You need to uninstall what you have and install simplejson. In Python 2.6, there's a 'json' module built-in, but pre-2.6, there's a third party 'json' module that has a different API a