From 8dea46f92fb70ddb8a5be81b91027a21d5dc8433 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 11 Jan 2019 17:00:38 -0800 Subject: config: Fix an error message in Port.splice(). That error message referenced non-existent variables which were likely renamed without updating the error message. Change-Id: I6878802ef4b83e3fdf75a860d848b8c5e2e8d6c0 Reviewed-on: https://gem5-review.googlesource.com/c/15515 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg --- src/python/m5/params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/python') diff --git a/src/python/m5/params.py b/src/python/m5/params.py index 483e632f5..ac712dc1f 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -1805,7 +1805,7 @@ class PortRef(object): else: raise TypeError, \ "Splicing non-port references '%s','%s' to port '%s'"\ - % (new_peer, peers_new_peer, self) + % (new_master_peer, new_slave_peer, self) else: fatal("Port %s not connected, cannot splice in new peers\n", self) -- cgit v1.2.3