diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/webvicli/webvicli/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webvicli/webvicli/client.py b/src/webvicli/webvicli/client.py index 7dfbccb..737125a 100644 --- a/src/webvicli/webvicli/client.py +++ b/src/webvicli/webvicli/client.py @@ -93,7 +93,7 @@ def dl_progress(count, blockSize, totalSize): if totalSize == -1: return percent = int(count*blockSize*100/totalSize) - sys.stdout.write("\r%d% %" % percent) + sys.stdout.write("\r%d %%" % percent) sys.stdout.flush() def next_available_file_name(basename, ext): |
