From 59802bec7674068220610b8082842b70a66f4230 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 20 Sep 2015 14:46:30 +0800 Subject: [PATCH] fhdl/structure: add missing init --- migen/fhdl/structure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/migen/fhdl/structure.py b/migen/fhdl/structure.py index ba72f09b0..7f23184a2 100644 --- a/migen/fhdl/structure.py +++ b/migen/fhdl/structure.py @@ -579,6 +579,7 @@ class Case(_Statement): class _ArrayProxy(_Value): def __init__(self, choices, key): + _Value.__init__(self) self.choices = [] for c in choices: if isinstance(c, (bool, int)):