mcteamdev16 / google-api-python-client

Automatically exported from code.google.com/p/google-api-python-client
Other
0 stars 0 forks source link

http.py line 817 call to http.request (really new_request) missing 'method= #329

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
[Use this form for both apiclient and oauth2client issues]

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by google-...@fool.com on 6 Mar 2014 at 9:06

GoogleCodeExporter commented 8 years ago
Sorry, accidentally hit enter. That line is missing "method=". It currently is 
"self.resumable_uri, 'PUT'," but should be "self.resumable_uri, method='PUT',". 
It's raising the warning "new_request() takes at most 1 positional argument (2 
given)"

Original comment by google-...@fool.com on 6 Mar 2014 at 9:08