diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-29 12:10:56 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-29 12:10:56 +0200 |
commit | 6917ae4ce9eaa0f5ea91592988c1ea830626ac3a (patch) | |
tree | 75f0f55477a70f52eeb72512116ca143cea2f4ec /lib/git/index/base.py | |
parent | f1401803ccf7db5d897a5ef4b27e2176627c430e (diff) | |
download | gitpython-6917ae4ce9eaa0f5ea91592988c1ea830626ac3a.tar.gz |
Diff: fixed bug that caused a string to end up as a blob mode
Diffstat (limited to 'lib/git/index/base.py')
-rw-r--r-- | lib/git/index/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/index/base.py b/lib/git/index/base.py index b51d6251..03da52b7 100644 --- a/lib/git/index/base.py +++ b/lib/git/index/base.py @@ -482,7 +482,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable): # delete all possible stages for stage in (1, 2, 3): try: - del( self.entries[(blob.path, stage)] ) + del( self.entries[(blob.path, stage)]) except KeyError: pass # END ignore key errors |