Fix for passing functional memory param to timing mem.
python/m5/config.py: Fix error message. --HG-- extra : convert_revision : 4e57f7bdd4ea7dfdd3e88c60080f993997b0bda2
This commit is contained in:
parent
4ddad6f782
commit
1e2c16c912
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ class SimObject(object):
|
|||
if found_obj != None and child != found_obj:
|
||||
raise AttributeError, \
|
||||
'parent.any matched more than one: %s %s' % \
|
||||
(obj.path, child.path)
|
||||
(found_obj.path, child.path)
|
||||
found_obj = child
|
||||
# search param space
|
||||
for pname,pdesc in self._params.iteritems():
|
||||
|
|
Loading…
Reference in a new issue