mercurial/transaction.py
changeset 2470 fe1689273f84
parent 2084 d66278012853
child 2858 345bac2bc4ec
equal deleted inserted replaced
2459:5c5277f03887 2470:fe1689273f84
     9 # Copyright 2005 Matt Mackall <mpm@selenic.com>
     9 # Copyright 2005 Matt Mackall <mpm@selenic.com>
    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 import os
    14 from demandload import demandload
    15 from i18n import gettext as _
    15 from i18n import gettext as _
       
    16 demandload(globals(), 'os')
    16 
    17 
    17 class transaction(object):
    18 class transaction(object):
    18     def __init__(self, report, opener, journal, after=None):
    19     def __init__(self, report, opener, journal, after=None):
    19         self.journal = None
    20         self.journal = None
    20 
    21