summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurie Clark-Michalek <bluepeppers@archlinux.us>2010-11-19 19:58:50 +0000
committerLaurie Clark-Michalek <bluepeppers@archlinux.us>2010-11-19 19:58:50 +0000
commitd499100fff5c8aab3c48aa0c9f1c4628e64a2657 (patch)
treeb426b6fcb272b0428fdac986790aa8cd8d80b0d6
parent81aa06f90db4c3560b082a0c5d3c0f9b36e23704 (diff)
Added missing comma between uptime days and hours.
-rw-r--r--archey.new2
1 files changed, 1 insertions, 1 deletions
diff --git a/archey.new b/archey.new
index c535262..5d4a134 100644
--- a/archey.new
+++ b/archey.new
@@ -294,7 +294,7 @@ class Uptime(BaseDisplay):
uptime = self.get_uptime()
if uptime['day']:
- value = '{day}{suffix}'.format(day=uptime['day'], suffix='s' if day > 1 else '')
+ value = '{day}{suffix}, '.format(day=uptime['day'], suffix='s' if day > 1 else '')
else:
value = ''
value += '{hours}:{mins:02d}'.format(hours=uptime['hour'], mins=uptime['minute'])