Merge pull request #5835 from mrbanzai/ssh_wrapper_py24

Make `write_ssh_wrapper` work for Python 2.4
pull/5552/merge
Michael DeHaan 11 years ago
commit 460adb4d36

@ -142,8 +142,8 @@ import re
import tempfile import tempfile
def write_ssh_wrapper(): def write_ssh_wrapper():
fh = tempfile.NamedTemporaryFile(delete=False) fd, wrapper_path = tempfile.mkstemp()
wrapper_path = fh.name fh = os.fdopen(fd, 'w+b')
template = """#!/bin/sh template = """#!/bin/sh
if [ -z "$GIT_SSH_OPTS" ]; then if [ -z "$GIT_SSH_OPTS" ]; then
BASEOPTS="" BASEOPTS=""

Loading…
Cancel
Save