# HG changeset patch # User mpm@selenic.com # Date 1125186123 25200 # Node ID 98988cc3723a4d4ec6aa9c0d0e1913aea8e2f715 # Parent 808a9f0e7af037ea7f4dc12ef588a4aa9a8743f5 Fix dirstate imports diff -r 808a9f0e7af0 -r 98988cc3723a mercurial/dirstate.py --- a/mercurial/dirstate.py Sat Aug 27 16:40:24 2005 -0700 +++ b/mercurial/dirstate.py Sat Aug 27 16:42:03 2005 -0700 @@ -10,7 +10,7 @@ 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):