Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update util.py
  • Loading branch information
uri-canva authored Sep 30, 2019
commit 7a5de476aa27d18f4adaa81f3631f37178e94db2
2 changes: 1 addition & 1 deletion git/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def _parse_progress_line(self, line):
# find escape characters and cut them away - regex will not work with
# them as they are non-ascii. As git might expect a tty, it will send them
line = self.re_ansi_escape.sub('', line)
line = line.strip()
line = line.rstrip()

cur_count, max_count = None, None
match = self.re_op_relative.match(line)
Expand Down