summaryrefslogtreecommitdiff
path: root/lib/git/index.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-11-24 21:28:03 +0100
committerSebastian Thiel <byronimo@gmail.com>2009-11-24 22:20:43 +0100
commitc5f92b17729e255ca01ffb4ed215d132e05ba4da (patch)
tree5c6e46b3da9d46182f965bdde624a7a877dd7c01 /lib/git/index.py
parent279d162f54b5156c442c878dee2450f8137d0fe3 (diff)
downloadgitpython-c5f92b17729e255ca01ffb4ed215d132e05ba4da.tar.gz
PushInfo: added summary field to help providing user readable information
Index.checkout: fixed bug in exception creator function
Diffstat (limited to 'lib/git/index.py')
-rw-r--r--lib/git/index.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/index.py b/lib/git/index.py
index b3dd12fd..54bb0209 100644
--- a/lib/git/index.py
+++ b/lib/git/index.py
@@ -1108,7 +1108,7 @@ class IndexFile(LazyMixin, diff.Diffable):
kwargs['as_process'] = True
kwargs['istream'] = subprocess.PIPE
proc = self.repo.git.checkout_index(args, **kwargs)
- make_exc = lambda : GitCommandError(("git-checkout-index",)+args, 128, proc.stderr.read())
+ make_exc = lambda : GitCommandError(("git-checkout-index",)+tuple(args), 128, proc.stderr.read())
checked_out_files = list()
for path in paths:
path = self._to_relative_path(path)