Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 30332:318a24b52eeb
spelling: fixes of non-dictionary words
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Mon, 17 Oct 2016 23:16:55 +0200 |
parents | 3d38a0bc774f |
children | fa54f7ade491 |
comparison
equal
deleted
inserted
replaced
30331:b19291e5d506 | 30332:318a24b52eeb |
---|---|
1500 changelist.append(fname) | 1500 changelist.append(fname) |
1501 | 1501 |
1502 return fparent1 | 1502 return fparent1 |
1503 | 1503 |
1504 def checkcommitpatterns(self, wctx, vdirs, match, status, fail): | 1504 def checkcommitpatterns(self, wctx, vdirs, match, status, fail): |
1505 """check for commit arguments that aren't commitable""" | 1505 """check for commit arguments that aren't committable""" |
1506 if match.isexact() or match.prefix(): | 1506 if match.isexact() or match.prefix(): |
1507 matched = set(status.modified + status.added + status.removed) | 1507 matched = set(status.modified + status.added + status.removed) |
1508 | 1508 |
1509 for f in match.files(): | 1509 for f in match.files(): |
1510 f = self.dirstate.normalize(f) | 1510 f = self.dirstate.normalize(f) |