comparison mercurial/hg.py @ 1093:1f1661c58283

commands: use revlog directly for debug commands This eliminates the import in hg.py
author mpm@selenic.com
date Sat, 27 Aug 2005 14:56:58 -0700
parents 1bca39b85615
children 221b5252864c
comparison
equal deleted inserted replaced
1092:0a02315976ff 1093:1f1661c58283
6 # of the GNU General Public License, incorporated herein by reference. 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 import os 8 import os
9 import util 9 import util
10 from node import * 10 from node import *
11 from revlog import *
12 from repo import * 11 from repo import *
13 from demandload import * 12 from demandload import *
14 demandload(globals(), "localrepo httprepo sshrepo") 13 demandload(globals(), "localrepo httprepo sshrepo")
15 14
16 def repository(ui, path=None, create=0): 15 def repository(ui, path=None, create=0):