summaryrefslogtreecommitdiff
path: root/ttystatus/percent.py
diff options
context:
space:
mode:
Diffstat (limited to 'ttystatus/percent.py')
-rw-r--r--ttystatus/percent.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ttystatus/percent.py b/ttystatus/percent.py
index ebe4e61..762cb82 100644
--- a/ttystatus/percent.py
+++ b/ttystatus/percent.py
@@ -35,10 +35,10 @@ class PercentDone(ttystatus.Widget):
done = float(self.done)
total = float(self.total)
except ValueError:
- done = 0
- total = 1
+ done = 0.0
+ total = 1.0
if total < 0.001:
- total = 1
+ total = 1.0
return '%.*f %%' % (self.decimals, 100.0 * done / total)
def update(self, master):