# HG changeset patch # User mpm@selenic.com # Date 2005-08-27 23:42:03 # Node ID 98988cc3723a4d4ec6aa9c0d0e1913aea8e2f715 # Parent 808a9f0e7af037ea7f4dc12ef588a4aa9a8743f5 Fix dirstate imports diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -10,7 +10,7 @@ of the GNU General Public License, incor import struct, os from node import * from demandload import * -demandload(globals(), "time bisect stat util") +demandload(globals(), "time bisect stat util re") class dirstate: def __init__(self, opener, ui, root):