Skip to content

Commit

Permalink
Fix order.models.__all__ (missing models)
Browse files Browse the repository at this point in the history
Add PaymentEventQuantity and ShippingEventQuantity to __all__. Overlooked due to the fact that these are not abstract
  • Loading branch information
Michael van Tellingen committed Nov 29, 2014
1 parent f5e7008 commit 7f32fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oscar/apps/order/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from oscar.apps.address.abstract_models import (AbstractShippingAddress,
AbstractBillingAddress)

__all__ = []
__all__ = ['PaymentEventQuantity', 'ShippingEventQuantity']


if not is_model_registered('order', 'Order'):
Expand Down

0 comments on commit 7f32fed

Please sign in to comment.