diff options
author | Bobby Impollonia <bobby@affinesystems.com> | 2012-03-10 18:02:39 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2012-09-23 16:18:56 -0700 |
commit | bd5c843040a9c183e1ce39afd65a519749eaa8db (patch) | |
tree | 9601ccbcdac24959c8f508a285efb6e2f519963b | |
parent | a05b770c03844f028952158e618837ea34d22a9d (diff) |
Replace hard tabs with spaces
(cherry picked from commit c07eddb9e1b579fdaa335477680689d7b2865452)
-rw-r--r-- | paramiko/transport.py | 6 | ||||
-rw-r--r-- | setup.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index 5884f549..8174a4cf 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -2020,8 +2020,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() @@ -2099,7 +2099,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)) @@ -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 = "paramiko", |