projects
/
nmigen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce7ba70
)
compat.fhdl.module: fix typo.
author
whitequark
<whitequark@whitequark.org>
Sat, 26 Jan 2019 23:08:55 +0000
(23:08 +0000)
committer
whitequark
<whitequark@whitequark.org>
Sat, 26 Jan 2019 23:08:55 +0000
(23:08 +0000)
nmigen/compat/fhdl/module.py
patch
|
blob
|
history
diff --git
a/nmigen/compat/fhdl/module.py
b/nmigen/compat/fhdl/module.py
index dca892ee6ec3553e2a3563c9df97033701920a4b..e81f2b6b8ae034d0e2585c812b4af1ba138e7d7e 100644
(file)
--- a/
nmigen/compat/fhdl/module.py
+++ b/
nmigen/compat/fhdl/module.py
@@
-54,7
+54,7
@@
class _CompatModuleSync(_CompatModuleProxy):
return _CompatModuleSyncCD(self._cm, name)
def __setattr__(self, name, value):
- if not isinstance(value, _ModuleSyncCD):
+ if not isinstance(value, _
Compat
ModuleSyncCD):
raise AttributeError("Attempted to assign sync property - use += instead")