Fixed (more) lingering issues from Vendor.contacts mapping tweak.

This commit is contained in:
Lance Edgar 2013-05-22 17:55:11 -07:00
parent 6fd13b19e5
commit 9d49f75e86

View file

@ -533,7 +533,9 @@ Vendor._contact = relationship(
uselist=False,
viewonly=True)
Vendor.contact = association_proxy('_contact', 'person')
Vendor.contact = association_proxy(
'_contact', 'person',
getset_factory=getset_factory)
class ProductCost(Base):