merged in all the code from ariel's branches and moved wikibios to a subdir
[matplotlib-cdsw] / load_hp_data.py
index 0fe78c55c1186d76bf1fd0f2033eb84274654bbe..55d497c441a5c0e2260a241fe700115f5231f035 100644 (file)
@@ -22,7 +22,7 @@ for row in reader:
     row['size'] = int(row['size'])
     rows.append(row)
 
-# Sort these things, so that they give you nice time-series
+# Sort these things, so that they give you nice ordered time-series
 sort_rows = sorted(rows, key=lambda row: row['timestamp'], reverse=False)
 
 rows = sort_rows

Benjamin Mako Hill || Want to submit a patch?