From: Steve Reinhardt Date: Mon, 18 Jul 2005 23:58:43 +0000 (-0400) Subject: Fix for passing functional memory param to timing mem. X-Git-Tag: m5_1.1~48^2~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1e2c16c9124ed3f51229daa715a6c00c2b97f73d;p=gem5.git Fix for passing functional memory param to timing mem. python/m5/config.py: Fix error message. --HG-- extra : convert_revision : 4e57f7bdd4ea7dfdd3e88c60080f993997b0bda2 --- diff --git a/python/m5/config.py b/python/m5/config.py index 754b18525..a281feccc 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -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():