added try/except

This commit is contained in:
Andreas Preikschat 2011-08-13 12:41:21 +02:00
parent b72b538893
commit 259b57badd
1 changed files with 7 additions and 2 deletions

View File

@ -703,7 +703,12 @@ class BibleUpgradeForm(OpenLPWizard):
# Delete upgraded (but not complete, corrupted, ...) bible.
delete_file(os.path.join(self.path, filename[0]))
# Copy not upgraded bible back.
shutil.move(os.path.join(temp_dir, filename[0]), self.path)
try:
shutil.move(os.path.join(temp_dir, filename[0]), self.path)
except shutil.Error:
# We can ignore any error, because the temp directory is
# will be deleted later.
pass
if self.checkBox[number].checkState() == QtCore.Qt.Checked:
failed_import += 1
if failed_import > 0:
@ -728,6 +733,6 @@ class BibleUpgradeForm(OpenLPWizard):
else:
self.progressLabel.setText(translate(
'BiblesPlugin.UpgradeWizardForm', 'Upgrade failed.'))
# Remove old bibles.
# Remove temp directory.
shutil.rmtree(temp_dir, True)
OpenLPWizard.postWizard(self)