From 57a1ba8390277722fc3ed5ca4ddb5756824030b6 Mon Sep 17 00:00:00 2001 From: Binyamin Sharet Date: Fri, 19 Jul 2013 03:30:04 +0300 Subject: [PATCH] Added [] --- speedtest-cli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speedtest-cli b/speedtest-cli index 0cdaa90..a5d216a 100755 --- a/speedtest-cli +++ b/speedtest-cli @@ -85,7 +85,7 @@ class FileGetter(threading.Thread): def show_progress( count, total ): if not quiet: - status = " %d out of %d files" % ( count, total ) + status = "[ %d out of %d files ]" % ( count, total ) sys.stdout.write( status ) if ( count < total ): sys.stdout.write( '\b' * len( status ) )