Skip to content
Snippets Groups Projects
Commit ca941252 authored by Dylann Cordel's avatar Dylann Cordel :crossed_swords:
Browse files

Merge branch 'master' into develop

parents da504f38 039dda10
No related merge requests found
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '0.5.0' __version__ = '0.5.1'
...@@ -17,7 +17,8 @@ class NewsboxI18NListMixin(NewsboxI18NPublishedMixinView): ...@@ -17,7 +17,8 @@ class NewsboxI18NListMixin(NewsboxI18NPublishedMixinView):
def __new__(cls, *args, **kwargs): def __new__(cls, *args, **kwargs):
from warnings import warn from warnings import warn
warn(('newsbox_i18n.views.NewsboxI18NListMixin is deprecated. ' warn(('newsbox_i18n.views.NewsboxI18NListMixin is deprecated. '
'Please use newsbox_i18n.views.NewsboxI18NListMixin instead'), DeprecationWarning) 'Please use newsbox_i18n.views.NewsboxI18NPublishedMixinView instead'),
DeprecationWarning)
return super(NewsboxI18NListMixin, cls).__new__(cls, *args, **kwargs) return super(NewsboxI18NListMixin, cls).__new__(cls, *args, **kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment