diff options
author | Mattias Andrée <maandree@kth.se> | 2016-09-28 17:16:49 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-09-28 17:16:49 +0200 |
commit | 48a0b5c44bbfd6cb2ab9d0e9afe2aec75e991597 (patch) | |
tree | ed6a50cf6d01886466b42014861baf175b6e1a59 /examples/plugins/df | |
parent | Update: the metar resources have moved (diff) | |
download | xpybar-48a0b5c44bbfd6cb2ab9d0e9afe2aec75e991597.tar.gz xpybar-48a0b5c44bbfd6cb2ab9d0e9afe2aec75e991597.tar.bz2 xpybar-48a0b5c44bbfd6cb2ab9d0e9afe2aec75e991597.tar.xz |
Fix bound checking
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'examples/plugins/df')
-rw-r--r-- | examples/plugins/df | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/plugins/df b/examples/plugins/df index d6c257f..5b3926b 100644 --- a/examples/plugins/df +++ b/examples/plugins/df @@ -58,7 +58,7 @@ def redraw(): def u(b): unit = 0 units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'] - while (unit < len(units)) and (b >= 1024): + while (unit + 1 < len(units)) and (b >= 1024): b /= 1024 unit += 1 return '%7.2f%s' % (b, units[unit]) |