summaryrefslogtreecommitdiff
path: root/shellutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'shellutils.py')
-rw-r--r--shellutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shellutils.py b/shellutils.py
index 749cbac..60ef602 100644
--- a/shellutils.py
+++ b/shellutils.py
@@ -338,7 +338,7 @@ class ProgressBar(object):
def refresh(self):
"""Refresh the progression bar display."""
- self._stream.write(self._fstr % ('.' * min(self._progress, self._size)) )
+ self._stream.write(self._fstr % ('=' * min(self._progress, self._size)) )
if self._last_text_write_size or self._current_text:
template = ' %%-%is' % (self._last_text_write_size)
text = self._current_text