From 560d7680101d9e00fbc79b717f3ed3682c18e04f Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 22 Aug 2019 13:46:32 -0700 Subject: [PATCH] Fix syntax error in router --- compiler/router/pin_group.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/router/pin_group.py b/compiler/router/pin_group.py index 2303d4a7..99986e76 100644 --- a/compiler/router/pin_group.py +++ b/compiler/router/pin_group.py @@ -470,9 +470,9 @@ class pin_group: # Now, make sure each pin touches an enclosure. If not, add another (diagonal) connector. # This could only happen when there was no enclosure in any cardinal direction from a pin if not self.overlap_any_shape(self.pins, self.enclosures): - connector = self.find_smallest_connector(pin_list, self.enclosures) + connector = self.find_smallest_connector(self.pins, self.enclosures) if connector==None: - debug.error("Could not find a connector for {} with {}".format(pin_list, self.enclosures)) + debug.error("Could not find a connector for {} with {}".format(self.pins, self.enclosures)) self.router.write_debug_gds("no_connector.gds") self.enclosures.append(connector)