From c07eddb9e1b579fdaa335477680689d7b2865452 Mon Sep 17 00:00:00 2001 From: Bobby Impollonia Date: Sat, 10 Mar 2012 18:02:39 -0800 Subject: [PATCH] Replace hard tabs with spaces --- setup.py | 4 ++-- ssh/transport.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index b72345f..8ed2a4d 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,8 @@ except ImportError: kw = {} if sys.platform == 'darwin': - import setup_helper - setup_helper.install_custom_make_tarball() + import setup_helper + setup_helper.install_custom_make_tarball() setup(name = "ssh", diff --git a/ssh/transport.py b/ssh/transport.py index cbf8b2e..17b125c 100644 --- a/ssh/transport.py +++ b/ssh/transport.py @@ -2008,8 +2008,8 @@ class Transport (threading.Thread): initial_window_size = m.get_int() max_packet_size = m.get_int() reject = False - if (kind == 'auth-agent@openssh.com') and (self._forward_agent_handler is not None): - self._log(DEBUG, 'Incoming forward agent connection') + if (kind == 'auth-agent@openssh.com') and (self._forward_agent_handler is not None): + self._log(DEBUG, 'Incoming forward agent connection') self.lock.acquire() try: my_chanid = self._next_channel() @@ -2087,7 +2087,7 @@ class Transport (threading.Thread): m.add_int(self.max_packet_size) self._send_message(m) self._log(INFO, 'Secsh channel %d (%s) opened.', my_chanid, kind) - if kind == 'auth-agent@openssh.com': + if kind == 'auth-agent@openssh.com': self._forward_agent_handler(chan) elif kind == 'x11': self._x11_handler(chan, (origin_addr, origin_port))