From b4f1d53a1b19b744d2372e70960310a0c84025ef Mon Sep 17 00:00:00 2001 From: Jesse Cirimelli-Low Date: Fri, 22 Feb 2019 06:46:28 -0800 Subject: [PATCH] fixed DRC datasheet error --- compiler/datasheet/datasheet.py | 2 +- compiler/datasheet/datasheet_gen.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/datasheet/datasheet.py b/compiler/datasheet/datasheet.py index 4b5cb741..c5e45ffb 100644 --- a/compiler/datasheet/datasheet.py +++ b/compiler/datasheet/datasheet.py @@ -62,7 +62,7 @@ class datasheet(): self.html += '

Timing Data

' model = '' if self.ANALYTICAL_MODEL: - model = "analytical model: results may not be percise" + model = "analytical model: results may not be precise" else: model = "spice characterizer" # display timing data diff --git a/compiler/datasheet/datasheet_gen.py b/compiler/datasheet/datasheet_gen.py index 1644df5f..d510bfa5 100644 --- a/compiler/datasheet/datasheet_gen.py +++ b/compiler/datasheet/datasheet_gen.py @@ -105,16 +105,16 @@ def parse_characterizer_csv(f, pages): DATETIME = row[col] col += 1 + + ANALYTICAL_MODEL = row[col] + col += 1 DRC = row[col] col += 1 LVS = row[col] col += 1 - - ANALYTICAL_MODEL = row[col] - col += 1 - + AREA = row[col] col += 1