summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xarchey32
1 files changed, 1 insertions, 1 deletions
diff --git a/archey3 b/archey3
index c74b2b2..9fb48ab 100755
--- a/archey3
+++ b/archey3
@@ -203,7 +203,7 @@ class fsDisplay(display):
try:
used_ = ''.join(c for c in used if c.isdigit())
total_ = ''.join(c for c in total if c.isdigit())
- persentage = 100 - (int(used_)/int(total_) * 100)
+ persentage = (int(used_)/int(total_) * 100)
except:
pass
else: