fetch: add missing import.
authorVadim Gelfer <vadim.gelfer@gmail.com>
Mon, 07 Aug 2006 19:08:55 -0700
changeset 2802 df220d0974dd
parent 2801 bd4dada96c2e
child 2803 987c31e2a08c
fetch: add missing import.
hgext/fetch.py
--- a/hgext/fetch.py	Mon Aug 07 17:33:14 2006 -0700
+++ b/hgext/fetch.py	Mon Aug 07 19:08:55 2006 -0700
@@ -8,7 +8,7 @@
 from mercurial.demandload import *
 from mercurial.i18n import gettext as _
 from mercurial.node import *
-demandload(globals(), 'mercurial:commands,hg,node')
+demandload(globals(), 'mercurial:commands,hg,node,util')
 
 def fetch(ui, repo, source='default', **opts):
     '''Pull changes from a remote repository, merge new changes if needed.