summaryrefslogtreecommitdiff
path: root/git-fat
diff options
context:
space:
mode:
authorChristian Hitz <christian.hitz@aizo.com>2013-08-20 11:23:41 +0200
committerChristian Hitz <christian.hitz@aizo.com>2013-08-20 11:23:41 +0200
commite013c50fcb78c1c6442f4a6496eff26af82289ff (patch)
tree1259b126dcc1487d1d071bfc4e4422a85cba82a4 /git-fat
parent4664f2dc2eee13b86d2e426780fd1130e0086e9f (diff)
downloadgit-fat-e013c50fcb78c1c6442f4a6496eff26af82289ff.tar.gz
make compatible with python2.6
patch from https://gist.github.com/edufelipe/1027906
Diffstat (limited to 'git-fat')
-rwxr-xr-xgit-fat25
1 files changed, 25 insertions, 0 deletions
diff --git a/git-fat b/git-fat
index f654fab..ce98fb8 100755
--- a/git-fat
+++ b/git-fat
@@ -14,6 +14,31 @@ import threading
import time
import collections
+try:
+ from subprocess import check_output
+ del check_output
+except ImportError:
+ def backport_check_output(*popenargs, **kwargs):
+ r"""Run command with arguments and return its output as a byte string.
+
+ Backported from Python 2.7 as it's implemented as pure python on stdlib.
+
+ >>> check_output(['/usr/bin/python', '--version'])
+ Python 2.6.2
+ """
+ process = subprocess.Popen(stdout=subprocess.PIPE, *popenargs, **kwargs)
+ output, unused_err = process.communicate()
+ retcode = process.poll()
+ if retcode:
+ cmd = kwargs.get("args")
+ if cmd is None:
+ cmd = popenargs[0]
+ error = subprocess.CalledProcessError(retcode, cmd)
+ error.output = output
+ raise error
+ return output
+ subprocess.check_output = backport_check_output
+
BLOCK_SIZE = 4096
def verbose_stderr(*args, **kwargs):