mercurial/transaction.py
changeset 1062 6d5a62a549fa
parent 814 0902ffece4b4
child 1073 7b35a980b982
equal deleted inserted replaced
1061:fed8d078840b 1062:6d5a62a549fa
    13 
    13 
    14 import os
    14 import os
    15 import util
    15 import util
    16 
    16 
    17 class transaction:
    17 class transaction:
    18     def __init__(self, report, opener, journal, after = None):
    18     def __init__(self, report, opener, journal, after=None):
    19         self.journal = None
    19         self.journal = None
    20 
    20 
    21         # abort here if the journal already exists
    21         # abort here if the journal already exists
    22         if os.path.exists(journal):
    22         if os.path.exists(journal):
    23             raise "journal already exists - run hg recover"
    23             raise "journal already exists - run hg recover"