Update status bar

This commit is contained in:
Dimitris Zlatanidis 2016-02-17 05:13:06 +02:00
parent d64ce4661c
commit 1786dd5e22

View file

@ -21,7 +21,6 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import time
@ -32,7 +31,7 @@ def status(sec):
"""Toolbar progressive status
"""
if _meta_.prg_bar in ["on", "ON"]:
syms = ["\\", "|", "/", "-"]
syms = ["|", "/", "-", "\\"]
for sym in syms:
sys.stdout.write("\b{0}{1}{2}".format(_meta_.color["GREY"], sym,
_meta_.color["ENDC"]))