Skip to content

Commit

Permalink
Using "=" as step indicator (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
KLVN authored and fredrik-hellmangroup committed Jul 26, 2016
1 parent 9575a1c commit 1ac2926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pokemongo_bot/step_walker.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ def progress_bar(percentage):
if not sys.stdout.isatty():
return
sys.stdout.write('\r')
# http://www.fileformat.info/info/unicode/char/2588/index.htm
msg = (u"[%-40s] %d%%" % (u"\u2588"*int(percentage*2//5), percentage))
# http://www.fileformat.info/info/unicode/char/003D/index.htm
msg = (u"[%-40s] %d%%" % (u"\u003D"*int(percentage*2//5), percentage))
sys.stdout.write(msg)
sys.stdout.flush()

Expand Down

0 comments on commit 1ac2926

Please sign in to comment.