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 23b4175 commit afc1edcCopy full SHA for afc1edc
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