We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ac42f7 + 9c7a1d4 commit e7c2bcdCopy full SHA for e7c2bcd
authorizenet/apicontrollers.py
@@ -111,13 +111,15 @@ def getresponseclass(self):
111
''' Returns the response class '''
112
return apicontractsv1.ARBGetSubscriptionStatusResponse()
113
114
- def afterExecute(self, response):
+ def afterexecute(self):
115
+ response = self._httpResponse
116
if constants.StatusStart in response:
117
response = response.replace(constants.note, '')
118
start = response.index(constants.StatusStart)
119
end = response.index(constants.StatusEnd)
120
response = response.replace(response[start:end+9], '')
- return response
121
+ self._httpResponse = response
122
+ return
123
124
class ARBUpdateSubscriptionController(apicontrollersbase.APIOperationBase):
125
0 commit comments