changeset 1095:0a18374c0769

changelog: adjust imports, comment
author mpm@selenic.com
date Sat, 27 Aug 2005 15:05:43 -0700
parents 221b5252864c
children ae4f1f48c569
files mercurial/changelog.py
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/changelog.py	Sat Aug 27 14:59:25 2005 -0700
+++ b/mercurial/changelog.py	Sat Aug 27 15:05:43 2005 -0700
@@ -1,15 +1,12 @@
-# hg.py - repository classes for mercurial
+# changelog.py - changelog class for mercurial
 #
 # Copyright 2005 Matt Mackall <mpm@selenic.com>
 #
 # This software may be used and distributed according to the terms
 # of the GNU General Public License, incorporated herein by reference.
 
-import sys, struct, os
-import util
+import os, time
 from revlog import *
-from demandload import *
-demandload(globals(), "time")
 
 class changelog(revlog):
     def __init__(self, opener):