summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2013-08-06 10:35:35 +0300
committerAntti Ajanki <antti.ajanki@iki.fi>2013-08-06 10:35:35 +0300
commitcdec30061f66f8fea2df8629ef892f9a32d4d23c (patch)
tree2cfc63e54bd2cbf82a90f71a2a208d4b669523a2
parent9c3b6177808fe4ab57208e4612f38c5ca7c8ecb2 (diff)
downloadvdr-plugin-webvideo-cdec30061f66f8fea2df8629ef892f9a32d4d23c.tar.gz
vdr-plugin-webvideo-cdec30061f66f8fea2df8629ef892f9a32d4d23c.tar.bz2
typo
-rw-r--r--src/webvicli/webvicli/client.py2
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):