Mobio Files are broken

bob.db.base.File does not accept any client_id in its init:

  def __init__(self, client_id, path, session_id, speech_type, shot_id, environment, device, channel_id):
    # call base class constructor
    bob.db.base.File.__init__(self, client_id=client_id, path=path)

this should be:

  def __init__(self, client_id, path, session_id, speech_type, shot_id, environment, device, channel_id):
    # call base class constructor
    bob.db.base.File.__init__(self, path=path)
    self.client_id=client_id