s/IBaseCap/CapBase/ (refs #1424)

This commit is contained in:
Florent 2014-07-09 12:59:31 +02:00
commit e5f11a15eb
31 changed files with 63 additions and 63 deletions

View file

@ -18,7 +18,7 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from .base import IBaseCap, BaseObject, StringField, IntField, UserError
from .base import CapBase, BaseObject, StringField, IntField, UserError
__all__ = ['Subtitle', 'CapSubtitle']
@ -48,7 +48,7 @@ class Subtitle(BaseObject):
BaseObject.__init__(self, id)
self.name = name
class CapSubtitle(IBaseCap):
class CapSubtitle(CapBase):
"""
Subtitle providers.
"""