Skip to content

Commit

Permalink
restore = in progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
np1 committed Mar 10, 2014
1 parent 330c9b6 commit 8956d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpsyt
Original file line number Diff line number Diff line change
Expand Up @@ -1341,7 +1341,7 @@ def make_status_line(match_object, songlength=0, progress_bar_size=30):
)

progress = int(ceil(pct / 100 * progress_bar_size))
status_line += " [%s]" % ("-" * (progress - 1) +
status_line += " [%s]" % ("=" * (progress - 1) +
">").ljust(progress_bar_size, ' ')

return status_line
Expand Down

0 comments on commit 8956d9c

Please sign in to comment.