Skip to content

Commit

Permalink
Include the httplib in use in the user agent (fixes #25)
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-stripe committed Feb 22, 2013
1 parent 0c4619b commit 73d7624
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stripe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ def request_raw(self, meth, url, params={}):
ua = {
'bindings_version' : VERSION,
'lang' : 'python',
'publisher' : 'stripe'
'publisher' : 'stripe',
'httplib': _httplib,
}
for attr, func in [['lang_version', platform.python_version],
['platform', platform.platform],
Expand Down

1 comment on commit 73d7624

@ebroder
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This actually fixes #15

Please sign in to comment.