Added not failing on invalid bins.csv file
Signed-off-by: Grzegorz Latosinski <glatosinski@antmicro.com>
This commit is contained in:
parent
1c0eeda6c6
commit
6709fdfc11
|
@ -100,7 +100,7 @@ def main(argv):
|
||||||
f'{prefix}_',
|
f'{prefix}_',
|
||||||
ext='sim.svg'
|
ext='sim.svg'
|
||||||
)
|
)
|
||||||
except Exception:
|
except (Exception, IndexError):
|
||||||
print(
|
print(
|
||||||
f'Failed to generate FET plot for {str(fetbin)}',
|
f'Failed to generate FET plot for {str(fetbin)}',
|
||||||
file=sys.stderr
|
file=sys.stderr
|
||||||
|
|
Loading…
Reference in New Issue