Trying to add things to help debug why I get an incomplete json response when first...
[doneit] / src / rtm_api.py
index e53009b..148ae7d 100644 (file)
@@ -212,6 +212,9 @@ def safer_eval(string):
        try:
                return eval(string, {}, {})
        except SyntaxError, e:
+               print "="*60
+               print string
+               print "="*60
                newE = RTMParseError("Error parseing json")
                newE.error = e
                raise newE