Fix remarks on #189 to #193

This commit is contained in:
Vincent Jacques
2013-08-23 09:32:47 +02:00
parent 0f74e4389b
commit fb7325884e
5 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -290,8 +290,8 @@ class Requester:
requestHeaders["Authorization"] = self.__authorizationHeader
def __conditional(self, requestHeaders, parameters):
# #189: Why pass etag and last_modified by param "parameters"?
# #189: May be better to add a specific param "headers" to methods requestFoobar?
# #193: Why pass etag and last_modified by param "parameters"?
# #193: May be better to add a specific param "headers" to methods requestFoobar?
etag = parameters.get(Consts.REQ_IF_NONE_MATCH)
last_modified = parameters.get(Consts.REQ_IF_MODIFIED_SINCE)
if etag is not None: