summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDjMelik <melik@archlinux.us>2010-11-17 02:06:28 -0800
committerDjMelik <melik@archlinux.us>2010-11-17 02:06:28 -0800
commit1603bfb709671eeabc690ed93b461e152cccde6c (patch)
tree06a8bdcae19e8807c86c1c85863609dbec897e1b
parent5e77c74057e2167bbebabacd14790aa10476d93e (diff)
removed a tab
-rwxr-xr-x[-rw-r--r--]archey3
1 files changed, 1 insertions, 2 deletions
diff --git a/archey b/archey
index 239b000..ecb82f1 100644..100755
--- a/archey
+++ b/archey
@@ -88,7 +88,6 @@ sh_dict = {
# Define Colour Scheme
-clear = '\x1b[0m'
blackB = '\x1b[0;30m'
blackB = '\x1b[1;30m'
redN = '\x1b[0;31m'
@@ -287,7 +286,7 @@ def disk_display():
size = total.split()[2]
usedpercent = float(re.sub("[A-Z]", "", used)) / float(re.sub("[A-Z]", "", size)) * 100
if usedpercent <= 33:
- fs = '%s%s %s/ %s' % (greenB, used, clear, size)
+ fs = '%s%s %s/ %s' % (greenB, used, , size)
output ('Disk', fs)
if usedpercent > 33 and usedpercent < 67:
fs = '%s%s %s/ %s' % (yellowB, used, clear, size)