Skip to content

Commit

Permalink
Fix a tabs versus spaces issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Tai committed Sep 29, 2010
1 parent 374f0d6 commit cbf54ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gearman/connection.py
Expand Up @@ -94,8 +94,8 @@ def connect(self):
def _create_client_socket(self):
"""Creates a client side socket and subsequently binds/configures our socket options"""
try:
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client_socket.connect((self.gearman_host, self.gearman_port))
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client_socket.connect((self.gearman_host, self.gearman_port))
except socket.error, socket_exception:
self.throw_exception(exception=socket_exception)

Expand Down

0 comments on commit cbf54ab

Please sign in to comment.