diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-04 15:46:18 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-04 18:35:49 +0200 |
commit | 7ec9c4fb813918b37546c009bd9127f977ed8917 (patch) | |
tree | 6dae266c8580410853eaebd94137c3323e717e40 /git/remote.py | |
parent | 833ac6ec4c9f185fd40af7852b6878326f44a0b3 (diff) | |
download | gitpython-orig_master.tar.gz |
remote: unfix fetch-infos paring of 8a2f7dce4(pydev fixes)orig_master
+ Mark another TC failing when not in master.
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/remote.py b/git/remote.py index d35e1fad..5d31a442 100644 --- a/git/remote.py +++ b/git/remote.py @@ -625,8 +625,8 @@ class Remote(LazyMixin, Iterable): for pline in progress_handler(line): # END handle special messages for cmd in cmds: - if len(pline) > 1 and pline[0] == ' ' and pline[1] == cmd: - fetch_info_lines.append(pline) + if len(line) > 1 and line[0] == ' ' and line[1] == cmd: + fetch_info_lines.append(line) continue # end find command code # end for each comand code we know |