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:
Steve Reinhardt 2005-07-18 19:58:43 -04:00
parent 4ddad6f782
commit 1e2c16c912

View file

@ -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():