From: Luke Kenneth Casson Leighton Date: Fri, 7 Feb 2020 14:38:00 +0000 (+0000) Subject: whoops syntax error X-Git-Tag: ls180-24jan2020~246 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=efc3ee2e656a8cfb46329a26b7ae94f273f17d01;p=ieee754fpu.git whoops syntax error --- diff --git a/src/ieee754/part_cmp/eq_gt_ge.py b/src/ieee754/part_cmp/eq_gt_ge.py index 70a202c3..7207c0f4 100644 --- a/src/ieee754/part_cmp/eq_gt_ge.py +++ b/src/ieee754/part_cmp/eq_gt_ge.py @@ -44,8 +44,8 @@ class PartitionedEqGtGe(Elaboratable): self.partition_points = PartitionPoints(partition_points) self.mwidth = len(self.partition_points)+1 self.output = Signal(self.mwidth, reset_less=True) - assert self.partition_points.fits_in_width(width), - "partition_points doesn't fit in width" + assert (self.partition_points.fits_in_width(width), + "partition_points doesn't fit in width") def elaborate(self, platform): m = Module()