rename CapBaseObject to BaseObject (refs #1424)

This commit is contained in:
Romain Bignon 2014-07-05 17:26:05 +02:00
commit 51958135cb
44 changed files with 183 additions and 183 deletions

View file

@ -18,13 +18,13 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from .base import IBaseCap, CapBaseObject, StringField
from .base import IBaseCap, BaseObject, StringField
__all__ = ['SongLyrics', 'ICapLyrics']
class SongLyrics(CapBaseObject):
class SongLyrics(BaseObject):
"""
Song lyrics object.
"""
@ -33,7 +33,7 @@ class SongLyrics(CapBaseObject):
content = StringField('Lyrics of the song')
def __init__(self, id, title):
CapBaseObject.__init__(self, id)
BaseObject.__init__(self, id)
self.title = title