diff options
author | Laurie Clark-Michalek <bluepeppers@archlinux.us> | 2010-11-07 14:13:21 +0000 |
---|---|---|
committer | Laurie Clark-Michalek <bluepeppers@archlinux.us> | 2010-11-07 14:13:21 +0000 |
commit | a453cc15a61eb458936db09fbb353c3fa4c2ee87 (patch) | |
tree | 22e2e71f59842c8275e0e4b48dcbeecf601f3bc1 | |
parent | b034f7a944836f15b41adeded3d9290f79d51a8f (diff) |
Fixed minor bug that was causing reverse FS coloring
-rwxr-xr-x | archey3 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -220,7 +220,7 @@ class ramDisplay(display): total = int(ram[1]) title = 'RAM' try: - persentage = 100 - (used / total * 100) + persentage = (used / total * 100) except: used += ' MB' else: |