summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsroet <sanderroet@hotmail.com>2021-09-14 12:34:23 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-18 09:26:28 +0800
commit415147046b6950cdc1812dce076a4de78eead162 (patch)
treedad24f3b68aded81a4a52554d787281277a7e700
parent144817a7da2c61cb0b678602d229a351f08df336 (diff)
downloadgitpython-415147046b6950cdc1812dce076a4de78eead162.tar.gz
fix typo's
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 7523ead5..9279bb0c 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -168,7 +168,7 @@ def handle_process_output(process: 'Git.AutoInterrupt' | Popen,
error_str = cast(str, error_str)
error_str = error_str.encode()
# We ignore typing on the next line because mypy does not like
- # the way we infered that stderr takes str of bytes
+ # the way we inferred that stderr takes str or bytes
stderr_handler(error_str) # type: ignore
if finalizer: