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

Add Arthur Grunseid to contributors. #374

Merged
merged 2 commits into from Apr 16, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CONTRIBUTORS.txt
Expand Up @@ -114,5 +114,8 @@ In chronological order:
* Tahia Khan <http://tahia.tk/>
* Added Timeout examples in docs

* Arthur Grunseid <http://grunseid.com>
* source_address support and tests (with https://github.com/bui)

* [Your name or handle] <[email or website]>
* [Brief summary of your changes]
2 changes: 1 addition & 1 deletion urllib3/connection.py
Expand Up @@ -83,7 +83,7 @@ def _new_conn(self):
:return: a new socket connection
"""
extra_args = []
if self.source_address:
if self.source_address: # Python 2.7+
extra_args.append(self.source_address)

conn = socket.create_connection(
Expand Down