diff mercurial/dirstate.py @ 1104:98988cc3723a

Fix dirstate imports
author mpm@selenic.com
date Sat, 27 Aug 2005 16:42:03 -0700
parents 221b5252864c
children 30ab5b8ee8ec
line wrap: on
line diff
--- 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):