Mercurial > public > mercurial-scm > hg
comparison mercurial/scmutil.py @ 15735:5b384b7f48d5
merge with stable
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 26 Dec 2011 18:08:20 -0600 |
parents | 7b7f03502b5a 4751d5133f15 |
children | c7a8164c61ab |
comparison
equal
deleted
inserted
replaced
15734:9b0efacd7745 | 15735:5b384b7f48d5 |
---|---|
83 | 83 |
84 def __call__(self, path): | 84 def __call__(self, path): |
85 '''Check the relative path. | 85 '''Check the relative path. |
86 path may contain a pattern (e.g. foodir/**.txt)''' | 86 path may contain a pattern (e.g. foodir/**.txt)''' |
87 | 87 |
88 path = util.localpath(path) | |
88 normpath = self.normcase(path) | 89 normpath = self.normcase(path) |
89 if normpath in self.audited: | 90 if normpath in self.audited: |
90 return | 91 return |
91 # AIX ignores "/" at end of path, others raise EISDIR. | 92 # AIX ignores "/" at end of path, others raise EISDIR. |
92 if util.endswithsep(path): | 93 if util.endswithsep(path): |