D11875: fsmonitor: fix criteria for nonnormalset computation
Alphare (Raphaël Gomès)
phabricator at mercurial-scm.org
Tue Dec 7 14:07:59 UTC 2021
Alphare created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
... oops.
REPOSITORY
rHG Mercurial
BRANCH
stable
REVISION DETAIL
https://phab.mercurial-scm.org/D11875
AFFECTED FILES
hgext/fsmonitor/__init__.py
CHANGE DETAILS
diff --git a/hgext/fsmonitor/__init__.py b/hgext/fsmonitor/__init__.py
--- a/hgext/fsmonitor/__init__.py
+++ b/hgext/fsmonitor/__init__.py
@@ -336,7 +336,7 @@
nonnormalset = {
f
for f, e in self._map.items()
- if e.v1_state() != "n" or e.v1_mtime() == -1
+ if e.v1_state() != b"n" or e.v1_mtime() == -1
}
copymap = self._map.copymap
To: Alphare, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list