Skip to content
This repository has been archived by the owner on Sep 12, 2020. It is now read-only.

Commit

Permalink
Replace hard tabs with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyi committed Mar 11, 2012
1 parent ece1a82 commit c07eddb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -45,8 +45,8 @@
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",
Expand Down
6 changes: 3 additions & 3 deletions ssh/transport.py
Expand Up @@ -2008,8 +2008,8 @@ def _parse_channel_open(self, m):
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()
Expand Down Expand Up @@ -2087,7 +2087,7 @@ def _parse_channel_open(self, m):
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))
Expand Down

0 comments on commit c07eddb

Please sign in to comment.