Forgot to merge the router failure status in chip.chip.doPnR().

This commit is contained in:
Jean-Paul Chaput 2022-05-21 18:49:55 +02:00
parent a94a290c9b
commit c877d7e980
1 changed files with 2 additions and 2 deletions

View File

@ -144,9 +144,9 @@ class Chip ( Block ):
self.conf.refresh()
def doPnR ( self ):
super(Chip,self).doPnR()
status = super(Chip,self).doPnR()
self.conf.refresh( self.conf.chip )
return self.conf.validated
return self.conf.validated and status
def save ( self, flags=0 ):
if not self.conf.validated: