Mercurial > public > mercurial-scm > hg
diff hgext/hbisect.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | b4ad640a3bcf |
children | 6b4127c7d52a |
line wrap: on
line diff
--- a/hgext/hbisect.py Tue Dec 12 18:16:23 2006 -0600 +++ b/hgext/hbisect.py Wed Dec 13 13:27:09 2006 -0600 @@ -7,8 +7,8 @@ # of the GNU General Public License, incorporated herein by reference. from mercurial.i18n import gettext as _ -from mercurial.demandload import demandload -demandload(globals(), "os sys sets mercurial:hg,util,commands,cmdutil") +from mercurial import hg, util, commands, cmdutil +import os, sys, sets versionstr = "0.0.3"