summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-05-28 21:33:26 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-05-28 21:35:02 +0800
commit9c6209f12e78218632319620da066c99d6f771d8 (patch)
tree22fbfa89d20be85d41463b5b2d2c4b0b99410884
parentf14903a0d4bb3737c88386a5ad8a87479ddd8448 (diff)
downloadgitpython-9c6209f12e78218632319620da066c99d6f771d8.tar.gz
Improve unfortunate wording
Fixes #1013
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index abb33e9c..17fe6c2f 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -840,7 +840,7 @@ class Remote(LazyMixin, Iterable):
If the push contains rejected heads, these will have the PushInfo.ERROR bit set
in their flags.
If the operation fails completely, the length of the returned IterableList will
- be null."""
+ be 0."""
kwargs = add_progress(kwargs, self.repo.git, progress)
proc = self.repo.git.push(self, refspec, porcelain=True, as_process=True,
universal_newlines=True, **kwargs)