From eada10548e38175afea4f54452ec478c7ed15746 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Wed, 27 Feb 2019 08:37:47 -0500 Subject: [PATCH] [skip ci] no blank line after progress bars --- python/damask/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/damask/util.py b/python/damask/util.py index a88080df5..ac32ae108 100644 --- a/python/damask/util.py +++ b/python/damask/util.py @@ -166,7 +166,7 @@ def progressBar(iteration, total, prefix='', bar_length=50): sys.stderr.write('\r{} {} {}'.format(prefix, bar, remaining_time)), - if iteration == total: sys.stderr.write('\n\n') + if iteration == total: sys.stderr.write('\n') sys.stderr.flush() # -----------------------------