summaryrefslogtreecommitdiff
path: root/python/m5/config.py
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2005-07-18 19:58:43 -0400
committerSteve Reinhardt <stever@eecs.umich.edu>2005-07-18 19:58:43 -0400
commit1e2c16c9124ed3f51229daa715a6c00c2b97f73d (patch)
tree1414bcf6c119624efc12e6a378587fd8fada5749 /python/m5/config.py
parent4ddad6f7829ce61244dadd61fb9ca32bcf90f07f (diff)
downloadgem5-1e2c16c9124ed3f51229daa715a6c00c2b97f73d.tar.xz
Fix for passing functional memory param to timing mem.
python/m5/config.py: Fix error message. --HG-- extra : convert_revision : 4e57f7bdd4ea7dfdd3e88c60080f993997b0bda2
Diffstat (limited to 'python/m5/config.py')
-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 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():