D11713: dirstate: add missing return on platforms without exec or symlink
Alphare (Raphaël Gomès)
phabricator at mercurial-scm.org
Wed Oct 20 17:07:50 UTC 2021
Alphare created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11713
AFFECTED FILES
mercurial/dirstate.py
CHANGE DETAILS
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -300,6 +300,8 @@
return b''
return fallback(x)
+ return f
+
@propertycache
def _cwd(self):
# internal config: ui.forcecwd
To: Alphare, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list