diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-03-09 11:35:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2017-03-09 11:03:29 +0100 |
commit | 8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d (patch) | |
tree | 09b460ad1445ca89c11206235665dfa2b3b4566c /git/index/base.py | |
parent | c23ae3a48bb37ae7ebd6aacc8539fee090ca34bd (diff) | |
download | gitpython-8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d.tar.gz |
Spelling fixes
Diffstat (limited to 'git/index/base.py')
-rw-r--r-- | git/index/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/index/base.py b/git/index/base.py index 80862882..4fee2aae 100644 --- a/git/index/base.py +++ b/git/index/base.py @@ -433,7 +433,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable): try: proc.stdin.write(("%s\n" % filepath).encode(defenc)) except IOError: - # pipe broke, usually because some error happend + # pipe broke, usually because some error happened raise fmakeexc() # END write exception handling proc.stdin.flush() @@ -846,7 +846,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable): :param working_tree: If True, the entry will also be removed from the working tree, physically - removing the respective file. This may fail if there are uncommited changes + removing the respective file. This may fail if there are uncommitted changes in it. :param kwargs: |