feed_plugin: add missing getLogger call

This commit is contained in:
Benjamin Dauvergne 2013-08-27 18:24:21 +02:00
parent a5a96b9856
commit 2921d5e0d2
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@ from cms.plugin_pool import plugin_pool
from . import models
from . import forms
logger = logging.getLogger(__name__)
class SelectUserFeedPlugin(CMSPluginBase):
model = models.SelectUserFeed
name = _('select user feeds')