Forgot to change the exception name in one of the spots it was raised in.

This commit is contained in:
Jeremy Fincher 2005-07-06 03:59:46 +00:00
parent e9c52f6a5f
commit a88f52bc7f
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ class Transaction(TransactionMixin):
try:
os.rename(self.txnDir, self.dir)
except EnvironmentError, e:
raise TransactionAcquisitionFailure(self.txnDir, e)
raise FailedAcquisition(self.txnDir, e)
os.mkdir(self.dirize(self.ORIGINALS))
os.mkdir(self.dirize(self.REPLACEMENTS))
self._journal = file(self._journalName, 'a')