示例#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)
示例#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)
示例#3
0
 def __init__(self):
     """
     Initialize
     """
     songs = Registry().get('songs')
     manager = songs.plugin.manager
     SongImport.__init__(self, manager, file_path=None)
示例#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)
示例#5
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the SongPro importer.
     """
     SongImport.__init__(self, manager, **kwargs)
示例#6
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the class.
     """
     SongImport.__init__(self, manager, **kwargs)
     self.encoding = 'us-ascii'
示例#7
0
文件: sundayplus.py 项目: jkunle/paul
 def __init__(self, manager, **kwargs):
     """
     Initialise the class.
     """
     SongImport.__init__(self, manager, **kwargs)
     self.encoding = 'us-ascii'
示例#8
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the MediaShout importer.
     """
     SongImport.__init__(self, manager, **kwargs)
示例#9
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the MediaShout importer.
     """
     SongImport.__init__(self, manager, **kwargs)