summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-21 00:33:43 +0200
committerGitHub <noreply@github.com>2016-10-21 00:33:43 +0200
commitafcd64ebbb770908bd2a751279ff070dea5bb97c (patch)
tree0674f49f45996d533890e0f67498a6038c590168 /git/cmd.py
parentaab7dc2c7771118064334ee475dff8a6bb176b57 (diff)
parent66c41eb3b2b4130c7b68802dd2078534d1f6bf7a (diff)
downloadgitpython-afcd64ebbb770908bd2a751279ff070dea5bb97c.tar.gz
Merge pull request #539 from bryant1410/typos
Fix some typos
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 1481ac81..ddce9824 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -68,10 +68,10 @@ def handle_process_output(process, stdout_handler, stderr_handler,
:return: result of finalizer
:param process: subprocess.Popen instance
:param stdout_handler: f(stdout_line_string), or None
- :param stderr_hanlder: f(stderr_line_string), or None
+ :param stderr_handler: f(stderr_line_string), or None
:param finalizer: f(proc) - wait for proc to finish
:param decode_streams:
- Assume stdout/stderr streams are binary and decode them vefore pushing \
+ Assume stdout/stderr streams are binary and decode them before pushing \
their contents to handlers.
Set it to False if `universal_newline == True` (then streams are in text-mode)
or if decoding must happen later (i.e. for Diffs).
@@ -419,7 +419,7 @@ class Git(LazyMixin):
def _set_cache_(self, attr):
if attr == '_version_info':
- # We only use the first 4 numbers, as everthing else could be strings in fact (on windows)
+ # We only use the first 4 numbers, as everything else could be strings in fact (on windows)
version_numbers = self._call_process('version').split(' ')[2]
self._version_info = tuple(int(n) for n in version_numbers.split('.')[:4] if n.isdigit())
else: