summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@trixter.de>2012-07-24 19:51:02 +0200
committerSebastian Thiel <sebastian.thiel@trixter.de>2012-07-24 19:51:02 +0200
commit0b820e617ab21b372394bf12129c30174f57c5d7 (patch)
tree83a34d19437aedcaa18f0e495fb8958f758f05ff
parentda5e58a47d3da8de1f58da4e871e15cc8272d0e5 (diff)
downloadgitpython-0b820e617ab21b372394bf12129c30174f57c5d7.tar.gz
Fixed typo which for some reason came in unnoticed
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index f44344ee..ed01783c 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -520,7 +520,7 @@ class Remote(LazyMixin, Iterable):
# Skip some progress lines that don't provide relevant information
fetch_info_lines = list()
for line in digest_process_messages(proc.stderr, progress):
- if line.startswith('From') or line.startswith('remote: Total') or line.startswitch('POST'):
+ if line.startswith('From') or line.startswith('remote: Total') or line.startswith('POST'):
continue
elif line.startswith('warning:'):
print >> sys.stderr, line