mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Forgot to change the exception name in one of the spots it was raised in.
This commit is contained in:
parent
e9c52f6a5f
commit
a88f52bc7f
@ -108,7 +108,7 @@ class Transaction(TransactionMixin):
|
|||||||
try:
|
try:
|
||||||
os.rename(self.txnDir, self.dir)
|
os.rename(self.txnDir, self.dir)
|
||||||
except EnvironmentError, e:
|
except EnvironmentError, e:
|
||||||
raise TransactionAcquisitionFailure(self.txnDir, e)
|
raise FailedAcquisition(self.txnDir, e)
|
||||||
os.mkdir(self.dirize(self.ORIGINALS))
|
os.mkdir(self.dirize(self.ORIGINALS))
|
||||||
os.mkdir(self.dirize(self.REPLACEMENTS))
|
os.mkdir(self.dirize(self.REPLACEMENTS))
|
||||||
self._journal = file(self._journalName, 'a')
|
self._journal = file(self._journalName, 'a')
|
||||||
|
Loading…
Reference in New Issue
Block a user