diff options
author | Peter Ward <peteraward@gmail.com> | 2009-10-28 18:34:41 +1100 |
---|---|---|
committer | Peter Ward <peteraward@gmail.com> | 2009-10-28 18:34:41 +1100 |
commit | 5f36d65c5e436fd9d822a3bd2fee2b6d3eb539e5 (patch) | |
tree | cd9bd7629fb22dda87f2c99ae3532c566a133aa0 | |
parent | e46596cb8ba20e05300b676f536baa073df9d971 (diff) |
Fix colours.
-rw-r--r-- | stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ def main(): time_series.append(time) length_series.append(length) - colours.append('%2X%2X%2X' % hash_colour(name)) + colours.append('%02X%02X%02X' % hash_colour(name)) time_data.append(time_series) length_data.append(length_series) |