Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63a444d commit bb8b383Copy full SHA for bb8b383
git/util.py
@@ -394,7 +394,7 @@ def _parse_progress_line(self, line):
394
# find escape characters and cut them away - regex will not work with
395
# them as they are non-ascii. As git might expect a tty, it will send them
396
line = self.re_ansi_escape.sub('', line)
397
- line = line.strip()
+ line = line.rstrip()
398
399
cur_count, max_count = None, None
400
match = self.re_op_relative.match(line)
0 commit comments