Bill13579/pyprog

PyProg 1.0.2 on Python 2 skipping

Bill13579 opened this issue · 0 comments

When using PyProg 1.0.2 on Python 2, the Progress Indicator will skip.

Code used in testing:

import pyprog
from time import sleep

prog = pyprog.ProgressBar(" ", " ")
prog.update()
for i in range(100):
	sleep(0.1)
	prog.set_stat(i + 1)
	prog.update()
prog.end()

This issue exists on all versions of PyProg from 1.0 to 1.0.2