fixed rename errors

This commit is contained in:
Andreas Preikschat 2011-10-30 22:38:02 +01:00
parent 904a9927c6
commit 15e19f9700

View File

@ -65,7 +65,7 @@ class OooImport(SongImport):
if not isinstance(self.importSource, list): if not isinstance(self.importSource, list):
return return
try: try:
self.start_ooo() self.startOoo()
except NoConnectException as exc: except NoConnectException as exc:
self.logError( self.logError(
self.importSource[0], self.importSource[0],
@ -145,7 +145,7 @@ class OooImport(SongImport):
process.waitForStarted() process.waitForStarted()
self.processStarted = True self.processStarted = True
except: except:
log.exception("start_ooo_process failed") log.exception("startOooProcess failed")
def openOooFile(self, filepath): def openOooFile(self, filepath):
""" """
@ -171,7 +171,7 @@ class OooImport(SongImport):
self.importWizard.incrementProgressBar( self.importWizard.incrementProgressBar(
u'Processing file ' + filepath, 0) u'Processing file ' + filepath, 0)
except AttributeError: except AttributeError:
log.exception("open_ooo_file failed: %s", url) log.exception("openOooFile failed: %s", url)
return return
def closeOooFile(self): def closeOooFile(self):