large commit. new code, with sensors, line count dropped, etc
diff --git a/report.py b/report.py
index 4d23b60..aaaaa53 100644
--- a/report.py
+++ b/report.py
@@ -2,7 +2,7 @@
 from collections import OrderedDict
 
 from chart import charts
-from utils import ssize_to_kb
+from utils import ssize_to_b
 
 
 OPERATIONS = (('async', ('randwrite asynchronous', 'randread asynchronous',
@@ -87,7 +87,7 @@
 
             OD = OrderedDict
             ordered_build_results = OD(sorted(build_results.items(),
-                                       key=lambda t: ssize_to_kb(t[0])))
+                                       key=lambda t: ssize_to_b(t[0])))
 
             if not scale_x:
                 scale_x = ordered_build_results.keys()