Fix view config inheritance
This commit is contained in:
parent
640ca783c7
commit
16fdfd51ba
|
@ -59,5 +59,4 @@ class ProductView(corepos_base.ProductView, woocommerce_base.ProductView):
|
||||||
|
|
||||||
|
|
||||||
def includeme(config):
|
def includeme(config):
|
||||||
ProductView.defaults(config)
|
base.defaults(config, **{'ProductView': ProductView})
|
||||||
base.PendingProductView.defaults(config)
|
|
||||||
|
|
|
@ -24,4 +24,4 @@ class UpgradeView(base.UpgradeView):
|
||||||
|
|
||||||
|
|
||||||
def includeme(config):
|
def includeme(config):
|
||||||
UpgradeView.defaults(config)
|
base.defaults(config, **{'UpgradeView': UpgradeView})
|
||||||
|
|
Loading…
Reference in a new issue