From 7965493b9b6fe3df2b48101da119475109b2f191 Mon Sep 17 00:00:00 2001 From: idzuibenko Date: Tue, 28 Sep 2021 11:51:55 +0300 Subject: [PATCH] loading bar now limited to 100% --- pym/install/distr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/install/distr.py b/pym/install/distr.py index ba8e36b..1a0edc8 100644 --- a/pym/install/distr.py +++ b/pym/install/distr.py @@ -103,7 +103,7 @@ class cpProcessProgress(processProgress): self.value += 1 if self.maxfiles: percent = 100 * self.value // self.maxfiles - percent = min(percent, 99) + # percent = min(percent, 99) if percent > self.percent: self.percent = percent return percent