diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-11-17 11:49:09 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-11-17 11:49:09 +0100 |
commit | d148a0de467d20bf18560374632b1f069659f8f3 (patch) | |
tree | c7e22311c48e6400c9bddcaf70fd7ff9035d8d95 | |
parent | 93ae6ecfffda7923b9f7f82d122d39c362be9c44 (diff) | |
download | gitpython-d148a0de467d20bf18560374632b1f069659f8f3.tar.gz |
Fixed indentation error
-rw-r--r-- | git/test/test_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py index a4e26977..3ce1bfaf 100644 --- a/git/test/test_index.py +++ b/git/test/test_index.py @@ -692,7 +692,7 @@ class TestIndex(TestBase): IStream(Blob.type, filesize, fileobj)) entry = BaseIndexEntry((100644, istream.binsha, 0, filename)) try: - rw_bare_repo.index.add([entry]) + rw_bare_repo.index.add([entry]) except AssertionError, e: self.fail("Adding to the index of a bare repo is not allowed.") |