Complete song import init cleanup

This commit is contained in:
Jon Tibble 2011-02-24 00:32:27 +00:00
parent cca1064e42
commit 3b31186114
1 changed files with 2 additions and 2 deletions

View File

@ -106,12 +106,12 @@ class FoilPresenterImport(SongImport):
"""
This provides the Foilpresenter import.
"""
def __init__(self, master_manager, **kwargs):
def __init__(self, manager, **kwargs):
"""
Initialise the import.
"""
log.debug(u'initialise FoilPresenterImport')
SongImport.__init__(self, master_manager, **kwargs)
SongImport.__init__(self, manager, **kwargs)
self.FoilPresenter = FoilPresenter(self.manager)
def do_import(self):