diff options
Diffstat (limited to 'examples/plugin-test')
-rw-r--r-- | examples/plugin-test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/plugin-test b/examples/plugin-test index 2945e95..c78ae83 100644 --- a/examples/plugin-test +++ b/examples/plugin-test @@ -24,7 +24,7 @@ def redraw(): tot_idle = '%id %02i:%02i:%0.2f' % uptime_.total_idle avg_idle = '%id %02i:%02i:%0.2f' % uptime_.average_idle uptime = 'Uptime: %s' % (uptime) - idle = 'Idle time: %s %s' % (tot_idle, avg_idle) + idle = 'Idle time: %s : %s' % (avg_idle, tot_idle) loadavg_ = AverageLoad() avg_5 = int(loadavg_.avg_5_min * 100) |