Skip to content

Commit

Permalink
Fix class loader called in Oscar contrib package
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Vetter committed Feb 12, 2014
1 parent e53259f commit 6290d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fancypages/contrib/oscar_fancypages/views.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from oscar.core.loading import load_class
from oscar.core.loading import get_class

from . import mixins


ProductCategoryView = load_class('catalogue.views', 'ProductCategoryView')
ProductCategoryView = get_class('catalogue.views', 'ProductCategoryView')


class FancyPageDetailView(mixins.OscarFancyPageMixin, ProductCategoryView):
Expand Down

0 comments on commit 6290d72

Please sign in to comment.