scmutil: add missing import of re stable
authorSteve Borho <steve@borho.org>
Fri, 08 Jul 2011 20:24:19 -0500
branchstable
changeset 14861 6ed2a449cb5b
parent 14851 f96c354493d7
child 14862 abf915f537be
scmutil: add missing import of re see https://bitbucket.org/tortoisehg/thg/issue/929
mercurial/scmutil.py
--- 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'''