Skip to content

Commit a66aff1

Browse files
committed
Define status
1 parent beebb56 commit a66aff1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/test_framework/authproxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def get_request(self, *args, **argsn):
136136

137137
def __call__(self, *args, **argsn):
138138
postdata = json.dumps(self.get_request(*args, **argsn), default=EncodeDecimal, ensure_ascii=self.ensure_ascii)
139-
response = self._request('POST', self.__url.path, postdata.encode('utf-8'))
139+
response, status = self._request('POST', self.__url.path, postdata.encode('utf-8'))
140140
if response['error'] is not None:
141141
raise JSONRPCException(response['error'])
142142
elif 'result' not in response:

0 commit comments

Comments
 (0)