You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[snip]
File "/env/local/lib/python2.7/site-packages/rinse/client.py", line 44, in __call__
return build_response(resp)
TypeError: __new__() takes exactly 3 arguments (2 given)
The RinseResponse expects two arguments, however the SoapClient.__call__ only provides one. What is the purpose of RinseResponse? Perhaps it would be better to simply default build_response to Response?
BTW, the RinseResponse class is defined in both util.py and response.py.
The text was updated successfully, but these errors were encountered:
Hi,
Consider the following code:
The above results in the following error:
The
RinseResponse
expects two arguments, however theSoapClient.__call__
only provides one. What is the purpose ofRinseResponse
? Perhaps it would be better to simply defaultbuild_response
toResponse
?BTW, the
RinseResponse
class is defined in bothutil.py
andresponse.py
.The text was updated successfully, but these errors were encountered: