Rename CapBase to Capability

This commit is contained in:
Florent 2014-09-23 10:20:09 +02:00
commit 44dffce7b2
31 changed files with 64 additions and 64 deletions

View file

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