Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfe311b9

Browse files
committed
Fix forgitpython-developers#142. Simply ignores lines that begin with ' ='
1 parent64a4730 commitfe311b9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

‎git/remote.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -513,14 +513,15 @@ def update(self, **kwargs):
513513
def_get_fetch_info_from_stderr(self,proc,progress):
514514
# skip first line as it is some remote info we are not interested in
515515
output=IterableList('name')
516-
517-
516+
517+
518518
# lines which are no progress are fetch info lines
519519
# this also waits for the command to finish
520520
# Skip some progress lines that don't provide relevant information
521521
fetch_info_lines=list()
522522
forlineindigest_process_messages(proc.stderr,progress):
523-
ifline.startswith('From')orline.startswith('remote: Total')orline.startswith('POST'):
523+
ifline.startswith('From')orline.startswith('remote: Total')orline.startswith('POST') \
524+
orline.startswith(' ='):
524525
continue
525526
elifline.startswith('warning:'):
526527
print>>sys.stderr,line

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp