Mercurial > public > mercurial-scm > hg
diff mercurial/sshrepo.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | 581665242c07 |
children | 6b4127c7d52a |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Tue Dec 12 18:16:23 2006 -0600 +++ b/mercurial/sshrepo.py Wed Dec 13 13:27:09 2006 -0600 @@ -8,8 +8,7 @@ from node import * from remoterepo import * from i18n import gettext as _ -from demandload import * -demandload(globals(), "hg os re stat util") +import hg, os, re, stat, util class sshrepository(remoterepository): def __init__(self, ui, path, create=0):