diff mercurial/changegroup.py @ 2470:fe1689273f84

use demandload more.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Tue, 20 Jun 2006 23:58:21 -0700
parents 802e8a029d99
children
line wrap: on
line diff
--- a/mercurial/changegroup.py	Mon Jun 19 20:37:36 2006 +0200
+++ b/mercurial/changegroup.py	Tue Jun 20 23:58:21 2006 -0700
@@ -6,10 +6,9 @@
 This software may be used and distributed according to the terms
 of the GNU General Public License, incorporated herein by reference.
 """
-import struct
 from i18n import gettext as _
 from demandload import *
-demandload(globals(), "util")
+demandload(globals(), "struct util")
 
 def getchunk(source):
     """get a chunk from a changegroup"""