Ejemplo n.º 1
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the import.
     """
     log.debug('initialise FoilPresenterImport')
     SongImport.__init__(self, manager, **kwargs)
     self.foil_presenter = FoilPresenter(self.manager, self)
Ejemplo n.º 2
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the import.
     """
     log.debug('initialise FoilPresenterImport')
     SongImport.__init__(self, manager, **kwargs)
     self.foil_presenter = FoilPresenter(self.manager, self)
Ejemplo n.º 3
0
 def __init__(self):
     """
     Initialize
     """
     songs = Registry().get('songs')
     manager = songs.plugin.manager
     SongImport.__init__(self, manager, file_path=None)
Ejemplo n.º 4
0
 def __init__(self):
     """
     Initialize.  Create a new manager object that always saves songs
     as temporary and pass this into the SongImport init function.
     """
     temp_manager = ManagerThatSavesSongAsTemporary()
     SongImport.__init__(self, temp_manager, filename=None)
Ejemplo n.º 5
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the SongPro importer.
     """
     SongImport.__init__(self, manager, **kwargs)
Ejemplo n.º 6
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the class.
     """
     SongImport.__init__(self, manager, **kwargs)
     self.encoding = 'us-ascii'
Ejemplo n.º 7
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the class.
     """
     SongImport.__init__(self, manager, **kwargs)
     self.encoding = 'us-ascii'
Ejemplo n.º 8
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the MediaShout importer.
     """
     SongImport.__init__(self, manager, **kwargs)
Ejemplo n.º 9
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the MediaShout importer.
     """
     SongImport.__init__(self, manager, **kwargs)