summaryrefslogtreecommitdiff
path: root/src/python/m5/SimObject.py
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2009-01-30 20:04:15 -0500
committerAli Saidi <saidi@eecs.umich.edu>2009-01-30 20:04:15 -0500
commitf4291aac256622546a5a51dce109599007f5b3cb (patch)
treeb40cdfa74233584291953ec236ff20aaf159a1fb /src/python/m5/SimObject.py
parent35a85a4e86143c5bf23d5b74c14856792a0a624c (diff)
downloadgem5-f4291aac256622546a5a51dce109599007f5b3cb.tar.xz
Errors: Print a URL with a hash of the format string to find more information about an error.
Diffstat (limited to 'src/python/m5/SimObject.py')
-rw-r--r--src/python/m5/SimObject.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/m5/SimObject.py b/src/python/m5/SimObject.py
index 2b5dd1bc2..1db9c7495 100644
--- a/src/python/m5/SimObject.py
+++ b/src/python/m5/SimObject.py
@@ -748,8 +748,8 @@ class SimObject(object):
for param in param_names:
value = self._values.get(param)
if value is None:
- m5.fatal("%s.%s without default or user set value" \
- % (self.path(), param))
+ m5.fatal("%s.%s without default or user set value",
+ self.path(), param)
value = value.getValue()
if isinstance(self._params[param], VectorParamDesc):