# HG changeset patch # User Raphaël Gomès # Date 2021-10-20 16:40:03 # Node ID 8f54d9c79b12b5036fa05d1cce1f9ef211166111 # Parent 126feb805247ab25fca6fc2d84670b4cddcf476c dirstate: add missing return on platforms without exec or symlink Differential Revision: https://phab.mercurial-scm.org/D11713 diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -300,6 +300,8 @@ class dirstate(object): return b'' return fallback(x) + return f + @propertycache def _cwd(self): # internal config: ui.forcecwd