We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c6fcc1 + afc1edc commit 1e76cd3Copy full SHA for 1e76cd3
1 file changed
remo/sdk.py
@@ -265,10 +265,12 @@ def print_file_warnings(data):
265
elif status == 'in progress':
266
msg = 'Processing data'
267
if substatus:
268
- msg = '{} - {}'.format(msg, substatus)
+ msg = '\r{}'.format(substatus)
269
+ else:
270
+ msg = '{}'.format(msg)
271
msg = format_msg(msg)
272
if msg != last_msg:
- print(msg, end='\r')
273
+ print(msg, end=' ')
274
last_msg = msg
275
276
elif status in ('done', 'failed'):
0 commit comments