Skip to content

Commit 0b820e6

Browse files
author
Sebastian Thiel
committed
Fixed typo which for some reason came in unnoticed
1 parent da5e58a commit 0b820e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: git/remote.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def _get_fetch_info_from_stderr(self, proc, progress):
520520
# Skip some progress lines that don't provide relevant information
521521
fetch_info_lines = list()
522522
for line in digest_process_messages(proc.stderr, progress):
523-
if line.startswith('From') or line.startswith('remote: Total') or line.startswitch('POST'):
523+
if line.startswith('From') or line.startswith('remote: Total') or line.startswith('POST'):
524524
continue
525525
elif line.startswith('warning:'):
526526
print >> sys.stderr, line

0 commit comments

Comments
 (0)