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 b207f0e commit 63a444dCopy full SHA for 63a444d
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.strip()
+ line = line.strip()
398
399
cur_count, max_count = None, None
400
match = self.re_op_relative.match(line)
0 commit comments