Skip to content

Commit

Permalink
Merge pull request #33 from aldryn/feature/fix_AppHookConfigTranslata…
Browse files Browse the repository at this point in the history
…bleManager

AppHookConfigTranslatableManager.get_queryset should use queryset_class
  • Loading branch information
yakky committed Sep 23, 2015
2 parents de75bbe + 9df6de7 commit be1580c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aldryn_apphooks_config/managers/parler.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ class AppHookConfigTranslatableManager(TranslatableManager, ManagerMixin):
queryset_class = AppHookConfigTranslatableQueryset

def get_queryset(self):
return AppHookConfigTranslatableQueryset(self.model, using=self.db)
return self.queryset_class(self.model, using=self.db)

0 comments on commit be1580c

Please sign in to comment.