Skip to content

Commit 17d0b82

Browse files
committed
two dots instead of three
1 parent e8d7699 commit 17d0b82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/techniques/blind/inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@ def downloadThread():
198198
for i in xrange(length):
199199
count += 1 if value[i] is not None else 0
200200
if startCharIndex > 0:
201-
output = '...' + output[3:]
201+
output = '..' + output[2:]
202202
if endCharIndex - startCharIndex == conf.progressWidth:
203-
output = output[:-3] + '...'
203+
output = output[:-2] + '..'
204204
output += '_' * (min(length, conf.progressWidth) - len(output))
205205
status = ' %d/%d (%d%s)' % (count, length, round(100.0*count/length), '%')
206206
output += status if count != length else " "*len(status)

0 commit comments

Comments
 (0)