Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hg.py @ 1102:c81d264cd17d
localrepo: minor opener usage restructuring
author | mpm@selenic.com |
---|---|
date | Sat, 27 Aug 2005 16:34:54 -0700 |
parents | 2cf5c8a4eae5 |
children | dec6d3c13dbf |
line wrap: on
line diff
--- a/mercurial/hg.py Sat Aug 27 16:28:53 2005 -0700 +++ b/mercurial/hg.py Sat Aug 27 16:34:54 2005 -0700 @@ -5,7 +5,6 @@ # This software may be used and distributed according to the terms # of the GNU General Public License, incorporated herein by reference. -import util from node import * from repo import * from demandload import * @@ -26,4 +25,4 @@ if path.startswith("ssh://"): return sshrepo.sshrepository(ui, path) - return localrepo.localrepository(ui, util.opener, path, create) + return localrepo.localrepository(ui, path, create)