diff mercurial/scmutil.py @ 14861:6ed2a449cb5b stable

scmutil: add missing import of re see https://bitbucket.org/tortoisehg/thg/issue/929
author Steve Borho <steve@borho.org>
date Fri, 08 Jul 2011 20:24:19 -0500
parents 72e4fcb43227
children dca59d5be12d 28e98a8b173d
line wrap: on
line diff
--- a/mercurial/scmutil.py	Tue Jul 12 12:35:03 2011 -0500
+++ b/mercurial/scmutil.py	Fri Jul 08 20:24:19 2011 -0500
@@ -8,7 +8,7 @@
 from i18n import _
 import util, error, osutil, revset, similar
 import match as matchmod
-import os, errno, stat, sys, glob
+import os, errno, re, stat, sys, glob
 
 def checkfilename(f):
     '''Check that the filename f is an acceptable filename for a tracked file'''