summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2005-11-02 10:20:39 -0500
committerSteve Reinhardt <stever@eecs.umich.edu>2005-11-02 10:20:39 -0500
commitd238b6be9de143be6b1e1286e6040cbfc0085fd0 (patch)
treec9acd620c3c57f8c8fb1778de6af55a368f30a61 /python
parentfb4f83809fd8a427503b109848ca7c8f3c179e8c (diff)
downloadgem5-d238b6be9de143be6b1e1286e6040cbfc0085fd0.tar.xz
Make vector params interact with proxies properly.
--HG-- extra : convert_revision : a4067f07d71d2adc1ccbf4512a43ceee7b5cc3de
Diffstat (limited to 'python')
-rw-r--r--python/m5/config.py2
1 files changed, 1 insertions, 1 deletions
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]