diff options
author | luz paz <luzpaz@pm.me> | 2022-05-07 15:59:10 -0400 |
---|---|---|
committer | luz paz <luzpaz@pm.me> | 2022-05-07 15:59:10 -0400 |
commit | dde3a8bd9229ff25ec8bc03c35d937f43233f48e (patch) | |
tree | e4db57c467db566901d53881012f1ccfe3ca9d4a /git/repo/fun.py | |
parent | b3166ece31bfb29e89f6ed4bb9214bf1c03791df (diff) | |
download | gitpython-dde3a8bd9229ff25ec8bc03c35d937f43233f48e.tar.gz |
Fix various typos
Found via `codespell -q 3 -S ./git/ext/gitdb,./test/fixtures/reflog_master,./test/fixtures/diff_mode_only,./test/fixtures/reflog_HEAD`
Diffstat (limited to 'git/repo/fun.py')
-rw-r--r-- | git/repo/fun.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/fun.py b/git/repo/fun.py index 1a83dd3d..74c0657d 100644 --- a/git/repo/fun.py +++ b/git/repo/fun.py @@ -266,7 +266,7 @@ def rev_parse(repo: 'Repo', rev: str) -> Union['Commit', 'Tag', 'Tree', 'Blob']: # END handle tag elif token == '@': # try single int - assert ref is not None, "Requre Reference to access reflog" + assert ref is not None, "Require Reference to access reflog" revlog_index = None try: # transform reversed index into the format of our revlog |