From 653f3dc903251c3be8d201116f32219fdd8c114e Mon Sep 17 00:00:00 2001 From: Mark Paschal Date: Mon, 14 Jun 2010 17:52:39 -0700 Subject: [PATCH] Expect 202 Accepted responses sometimes --- remoteobjects/http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/remoteobjects/http.py b/remoteobjects/http.py index a2be36c..b1b9a3a 100644 --- a/remoteobjects/http.py +++ b/remoteobjects/http.py @@ -61,6 +61,7 @@ class HttpObject(DataObject): response_has_content = { httplib.OK: True, + httplib.ACCEPTED: True, httplib.CREATED: True, httplib.NO_CONTENT: False, httplib.MOVED_PERMANENTLY: True,