Skip to content

Commit

Permalink
Fix wrong import
Browse files Browse the repository at this point in the history
I presumably have messed up my local Python path, so PyCharm picked the
wrong import. Sorry for the noise.
  • Loading branch information
maiksprenger committed May 4, 2015
1 parent 1251bfc commit 76a46f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oscar/apps/catalogue/search_handlers.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from django.conf import settings
from django.utils.module_loading import import_string
from django.views.generic.list import MultipleObjectMixin
from core.decorators import deprecated

from oscar.core.decorators import deprecated
from oscar.core.loading import get_class, get_model

BrowseCategoryForm = get_class('search.forms', 'BrowseCategoryForm')
Expand Down

0 comments on commit 76a46f7

Please sign in to comment.