Silence pylint on Mac OSX 10.6

Also, increase the wait for socket binding to 0.2 seconds because OSX10.6 is
broken _and_ slow.

R=dpranke@chromium.org
BUG=
TEST=


Review URL: http://codereview.chromium.org/8749005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@112277 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
maruel@chromium.org
2011-11-30 20:26:16 +00:00
parent 379d07a4ff
commit 14e37ad7ad
5 changed files with 7 additions and 7 deletions

View File

@@ -182,7 +182,8 @@ class Popen(subprocess.Popen):
fix('stderr')
self.start = time.time()
# Silence pylint on MacOSX
self.returncode = None
try:
super(Popen, self).__init__(args, **kwargs)
except OSError, e: