We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 930a0e3 commit 207e384Copy full SHA for 207e384
authorizenet/apicontrollers.py
@@ -113,12 +113,15 @@ def getresponseclass(self):
113
114
def afterexecute(self):
115
response = self._httpResponse
116
- if constants.StatusStart in response:
+ if constants.note in response:
117
response = response.replace(constants.note, '')
118
+
119
+ if constants.StatusStart in response:
120
start = response.index(constants.StatusStart)
121
end = response.index(constants.StatusEnd)
122
response = response.replace(response[start:end+9], '')
- self._httpResponse = response
123
124
+ self._httpResponse = response
125
return
126
127
class ARBUpdateSubscriptionController(apicontrollersbase.APIOperationBase):
0 commit comments