From d238b6be9de143be6b1e1286e6040cbfc0085fd0 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Wed, 2 Nov 2005 10:20:39 -0500 Subject: [PATCH] Make vector params interact with proxies properly. --HG-- extra : convert_revision : a4067f07d71d2adc1ccbf4512a43ceee7b5cc3de --- python/m5/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/m5/config.py b/python/m5/config.py index 86acb75f8..33f3f5843 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -755,7 +755,7 @@ class ParamDesc(object): class VectorParamValue(list): def ini_str(self): - return ' '.join([str(v) for v in self]) + return ' '.join([v.ini_str() for v in self]) def unproxy(self, base): return [v.unproxy(base) for v in self]