hdl.xfrm: make deprecated CEInserter more well-behaved.

This commit is contained in:
whitequark 2019-08-18 16:26:45 +00:00
parent ed7e07c6c1
commit d44ea4e9fe

View file

@ -698,4 +698,5 @@ class EnableInserter(_ControlInserter):
return new_fragment
CEInserter = deprecated("instead of `CEInserter`, use `EnableInserter`")(EnableInserter)
CEInserter = staticmethod(
deprecated("instead of `CEInserter`, use `EnableInserter`")(EnableInserter))