Oops, messed up on the error message
[doneit] / src / rtm_api.py
index 720c0d2..c30b5b9 100644 (file)
@@ -110,10 +110,11 @@ class RTMapi(object):
                        time.sleep(1)
                        chunk = connection.read()
                json = "".join(chunks)
+
                if "Content-Length" in connection.info():
                        assert len(json) == int(connection.info()["Content-Length"]), "The packet header promised %s of data but only was able to read %s of data" % (
-                               len(json),
                                connection.info()["Content-Length"],
+                               len(json),
                        )
 
                data = DottedDict('ROOT', parse_json(json))