diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-11-24 21:28:03 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-11-24 22:20:43 +0100 |
commit | c5f92b17729e255ca01ffb4ed215d132e05ba4da (patch) | |
tree | 5c6e46b3da9d46182f965bdde624a7a877dd7c01 /lib/git/index.py | |
parent | 279d162f54b5156c442c878dee2450f8137d0fe3 (diff) | |
download | gitpython-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.py | 2 |
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) |