From: whitequark Date: Tue, 25 Jun 2019 21:53:08 +0000 (+0000) Subject: compat.fhdl.structure: fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6cff024be72fc56d111b53df9e1a5720bd204411;p=nmigen.git compat.fhdl.structure: fix typo. --- diff --git a/nmigen/compat/fhdl/structure.py b/nmigen/compat/fhdl/structure.py index 4a99195..1f374d4 100644 --- a/nmigen/compat/fhdl/structure.py +++ b/nmigen/compat/fhdl/structure.py @@ -88,6 +88,7 @@ class Case(ast.Switch): raise TypeError("Case object is not a Migen constant") if isinstance(k, str) and k == "default": default = v + continue else: k = k.value new_cases.append((k, v))