1416 listignored, listclean, listunknown = ignored, clean, unknown |
1416 listignored, listclean, listunknown = ignored, clean, unknown |
1417 match = match or matchmod.always(self._repo.root, self._repo.getcwd()) |
1417 match = match or matchmod.always(self._repo.root, self._repo.getcwd()) |
1418 subrepos = [] |
1418 subrepos = [] |
1419 if '.hgsub' in self: |
1419 if '.hgsub' in self: |
1420 subrepos = sorted(self.substate) |
1420 subrepos = sorted(self.substate) |
1421 s = self._repo.dirstate.status(match, subrepos, listignored, |
1421 cmp, s = self._repo.dirstate.status(match, subrepos, listignored, |
1422 listclean, listunknown) |
1422 listclean, listunknown) |
1423 cmp, modified, added, removed, deleted, unknown, ignored, clean = s |
1423 modified, added, removed, deleted, unknown, ignored, clean = s |
1424 |
1424 |
1425 # check for any possibly clean files |
1425 # check for any possibly clean files |
1426 if cmp: |
1426 if cmp: |
1427 modified2, fixup = self._checklookup(cmp) |
1427 modified2, fixup = self._checklookup(cmp) |
1428 modified += modified2 |
1428 modified += modified2 |