Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated hoover to use python requests instead of httplib2 #7

Merged
merged 4 commits into from Feb 23, 2013
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

adding verify=True to be on the safe side

  • Loading branch information
gingerlime committed Feb 22, 2013
commit 978afe038d83fa8568d44f2ea054f2a7190fb9e4
@@ -29,7 +29,7 @@ def post_to_endpoint(endpoint, message, encoding='utf-8'):
message = message.encode(encoding)
except UnicodeEncodeError:
pass
requests.post(endpoint, message)
requests.post(endpoint, message, verify=True)
async_post_to_endpoint = async(post_to_endpoint)


ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.