# HG changeset patch # User mpm@selenic.com # Date 2005-08-27 21:59:25 # Node ID 221b5252864cc9114dc369d4df1a177c4e2ef4ec # Parent 1f1661c58283adee250d3bd820ea51dc54dc55ef Adjust some imports diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -7,8 +7,8 @@ This software may be used and distribute of the GNU General Public License, incorporated herein by reference. """ -import sys, struct, os -from revlog import * +import struct, os +from node import * from demandload import * demandload(globals(), "time bisect stat util") diff --git a/mercurial/hg.py b/mercurial/hg.py --- a/mercurial/hg.py +++ b/mercurial/hg.py @@ -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 os import util from node import * from repo import *