Skip to content
This repository has been archived by the owner on Apr 18, 2018. It is now read-only.

allow hostnames to be passed as unicode in GearmanConnection #71

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gearman/connection_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self, host_list=None):
host_list = host_list or []
for element in host_list:
# old style host:port pair
if isinstance(element, str):
if isinstance(element, basestring):
self.add_connection(element)
elif isinstance(element, dict):
if not all (k in element for k in ('host', 'port', 'keyfile', 'certfile', 'ca_certs')):
Expand Down