cubicweb/server/sources/datafeed.py
branch3.25
changeset 12149 649100470733
parent 12148 79160d54662e
child 12346 b3f45d96a179
--- a/cubicweb/server/sources/datafeed.py	Wed Apr 12 15:49:05 2017 +0200
+++ b/cubicweb/server/sources/datafeed.py	Wed Apr 12 15:38:32 2017 +0200
@@ -34,7 +34,7 @@
 
 from logilab.common.deprecation import deprecated
 
-from cubicweb import ObjectNotFound, ValidationError, SourceException
+from cubicweb import ObjectNotFound, ValidationError, SourceException, _
 from cubicweb.server.sources import AbstractSource
 from cubicweb.appobject import AppObject
 
@@ -102,7 +102,6 @@
         """check configuration of source entity"""
         typed_config = super(DataFeedSource, self).check_config(source_entity)
         if typed_config['synchronization-interval'] < 60:
-            _ = source_entity._cw._
             msg = _('synchronization-interval must be greater than 1 minute')
             raise ValidationError(source_entity.eid, {'config': msg})
         return typed_config