Mercurial > public > mercurial-scm > hg-stable
diff mercurial/transaction.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | 345bac2bc4ec |
children | 6b4127c7d52a |
line wrap: on
line diff
--- a/mercurial/transaction.py Tue Dec 12 18:16:23 2006 -0600 +++ b/mercurial/transaction.py Wed Dec 13 13:27:09 2006 -0600 @@ -11,9 +11,8 @@ # This software may be used and distributed according to the terms # of the GNU General Public License, incorporated herein by reference. -from demandload import demandload from i18n import gettext as _ -demandload(globals(), 'os') +import os class transaction(object): def __init__(self, report, opener, journal, after=None):