##// END OF EJS Templates
check-code: examine magic pattern matching against contents of a file...
FUJIWARA Katsunori -
r28050:7e9e3922 default
parent child Browse files
Show More
@@ -485,7 +485,7 b' def checkfile(f, logfunc=_defaultlogger.'
485 if debug:
485 if debug:
486 print name, f
486 print name, f
487 fc = 0
487 fc = 0
488 if not (re.match(match, f) or (magic and re.search(magic, f))):
488 if not (re.match(match, f) or (magic and re.search(magic, pre))):
489 if debug:
489 if debug:
490 print "Skipping %s for %s it doesn't match %s" % (
490 print "Skipping %s for %s it doesn't match %s" % (
491 name, match, f)
491 name, match, f)
General Comments 0
You need to be logged in to leave comments. Login now