Mercurial > public > mercurial-scm > hg-stable
diff mercurial/bundlerepo.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | 8643b9f90b51 |
children | 6b4127c7d52a |
line wrap: on
line diff
--- a/mercurial/bundlerepo.py Tue Dec 12 18:16:23 2006 -0600 +++ b/mercurial/bundlerepo.py Wed Dec 13 13:27:09 2006 -0600 @@ -12,8 +12,7 @@ from node import * from i18n import gettext as _ -from demandload import demandload -demandload(globals(), "changegroup util os struct bz2 tempfile") +import changegroup, util, os, struct, bz2, tempfile import localrepo, changelog, manifest, filelog, revlog