Mercurial > hg-stable
changeset 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 | f96c354493d7 |
children | abf915f537be |
files | mercurial/scmutil.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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'''