comparison mercurial/transaction.py @ 7335:866d2715aff5

add missing import from 618140c75d8d
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Fri, 07 Nov 2008 18:42:43 +0100
parents 618140c75d8d
children 9f14b66830a8
comparison
equal deleted inserted replaced
7334:618140c75d8d 7335:866d2715aff5
10 # 10 #
11 # This software may be used and distributed according to the terms 11 # This software may be used and distributed according to the terms
12 # of the GNU General Public License, incorporated herein by reference. 12 # of the GNU General Public License, incorporated herein by reference.
13 13
14 from i18n import _ 14 from i18n import _
15 import os 15 import os, errno
16 16
17 class transaction(object): 17 class transaction(object):
18 def __init__(self, report, opener, journal, after=None, createmode=None): 18 def __init__(self, report, opener, journal, after=None, createmode=None):
19 self.journal = None 19 self.journal = None
20 20