changeset 1094:221b5252864c

Adjust some imports
author mpm@selenic.com
date Sat, 27 Aug 2005 14:59:25 -0700
parents 1f1661c58283
children 0a18374c0769
files mercurial/dirstate.py mercurial/hg.py
diffstat 2 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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")
 
--- 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 *