diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index 5a068aa8b..c21ee3caa 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -70,7 +70,7 @@ class FileDownloader(object): def format_percent(percent): if percent is None: return '---.-%' - return '%6s' % ('%3.1f%%' % percent) + return '%3s.%.1s%%' % tuple(str(float(percent)).split('.')) @staticmethod def calc_eta(start, now, total, current):