summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Ward <peteraward@gmail.com>2009-10-28 18:34:41 +1100
committerPeter Ward <peteraward@gmail.com>2009-10-28 18:34:41 +1100
commit5f36d65c5e436fd9d822a3bd2fee2b6d3eb539e5 (patch)
treecd9bd7629fb22dda87f2c99ae3532c566a133aa0
parente46596cb8ba20e05300b676f536baa073df9d971 (diff)
Fix colours.
-rw-r--r--stats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/stats.py b/stats.py
index cb1037a..1527701 100644
--- a/stats.py
+++ b/stats.py
@@ -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)