diff options
-rwxr-xr-x | tools/metrics.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/metrics.py b/tools/metrics.py index e603c43de..25acb30f5 100755 --- a/tools/metrics.py +++ b/tools/metrics.py @@ -43,7 +43,7 @@ Other commands: """ -import sys, re, subprocess +import collections, sys, re, subprocess MAKE_FLAGS = ["-j3", "CFLAGS_EXTRA=-DNDEBUG"] @@ -98,7 +98,7 @@ def parse_port_list(args): def read_build_log(filename): - data = dict() + data = collections.OrderedDict() lines = [] found_sizes = False with open(filename) as f: |