Fix typo in volume import end handler

This commit is contained in:
Jean-Philippe Ouellet 2017-11-21 01:05:06 -05:00
parent ac8980a903
commit b41c118166
No known key found for this signature in database
GPG Key ID: 4747332C27533622

View File

@ -71,11 +71,11 @@ class QubesInternalAPI(qubes.api.AbstractQubesAPI):
self.dest.storage.import_data_end(self.arg, success=success)
except:
self.dest.fire_event('domain-volume-import-end', volume=self.arg,
succeess=False)
success=False)
raise
self.dest.fire_event('domain-volume-import-end', volume=self.arg,
succeess=success)
success=success)
if not success:
raise qubes.exc.QubesException('Data import failed')