Skip to content

Commit 4861896

Browse files
authored
Merge pull request #1013 from kporangehat/progressbar_newline
Don't add newlines by default for progressbars
2 parents 0650d36 + b098d6e commit 4861896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

click/_termui_impl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def render_progress(self):
233233

234234
if line != self._last_line and not self.is_fast():
235235
self._last_line = line
236-
echo(line, file=self.file, color=self.color, nl=True)
236+
echo(line, file=self.file, color=self.color, nl=False)
237237
self.file.flush()
238238

239239
def make_step(self, n_steps):

0 commit comments

Comments
 (0)