Fix dirstate imports
authormpm@selenic.com
Sat, 27 Aug 2005 16:42:03 -0700
changeset 1104 98988cc3723a
parent 1103 808a9f0e7af0
child 1109 ee817c5e3ece
Fix dirstate imports
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):